summaryrefslogtreecommitdiffstats
path: root/common/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/list.h b/common/list.h
index b16bf946..1838370c 100644
--- a/common/list.h
+++ b/common/list.h
@@ -30,10 +30,15 @@ struct slist {
struct slist *next;
};
+typedef int (*cmp_func_t)(const void *a, const void *b);
+
struct slist *slist_append(struct slist *list, void *data);
struct slist *slist_remove(struct slist *list, void *data);
+struct slist *slist_find(struct slist *list, const void *data,
+ cmp_func_t cmp_func);
+
void slist_free(struct slist *list);
#endif /* __LIST_H */