From 1e522d5baaf93b15dc9c0c88b2430eac3540a95c Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sun, 1 May 2005 20:51:01 +0000 Subject: removed unused function list_is_ptrin() --- src/pacman/list.c | 12 ------------ src/pacman/list.h | 1 - 2 files changed, 13 deletions(-) (limited to 'src') diff --git a/src/pacman/list.c b/src/pacman/list.c index 1d32b0b8..9f58c3ee 100644 --- a/src/pacman/list.c +++ b/src/pacman/list.c @@ -97,18 +97,6 @@ static list_t *list_last(list_t *list) return(ptr); } -int list_is_ptrin(void *needle, list_t *haystack) -{ - list_t *lp; - - for(lp = haystack; lp; lp = lp->next) { - if(lp->data == needle) { - return(1); - } - } - return(0); -} - /* Test for existence of a string in a list_t */ int list_is_strin(char *needle, list_t *haystack) diff --git a/src/pacman/list.h b/src/pacman/list.h index 845ca5c8..ca738f9e 100644 --- a/src/pacman/list.h +++ b/src/pacman/list.h @@ -35,7 +35,6 @@ list_t *list_new(); void list_free(list_t* list); list_t *list_add(list_t* list, void *data); int list_count(list_t* list); -int list_is_ptrin(void *needle, list_t *haystack); int list_is_strin(char *needle, list_t *haystack); void list_display(const char *title, list_t *list); -- cgit v1.2.3-54-g00ecf