X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils_llist.h;h=19d8d947bd66b94acead4079856a558107186f13;hb=c97eef40cf19b106e6a00006a3b8f3f9ee409045;hp=603fc87b552178e342a336539da6de7fa7fe1b9e;hpb=79d36d9eb61ac09f253769feff144383b2b665c9;p=collectd.git diff --git a/src/utils_llist.h b/src/utils_llist.h index 603fc87b..19d8d947 100644 --- a/src/utils_llist.h +++ b/src/utils_llist.h @@ -44,14 +44,18 @@ typedef struct llist_s llist_t; llist_t *llist_create (void); void llist_destroy (llist_t *l); -llentry_t *llentry_create (const char *key, void *value); +llentry_t *llentry_create (char *key, void *value); void llentry_destroy (llentry_t *e); void llist_append (llist_t *l, llentry_t *e); void llist_prepend (llist_t *l, llentry_t *e); void llist_remove (llist_t *l, llentry_t *e); +int llist_size (llist_t *l); + llentry_t *llist_search (llist_t *l, const char *key); +llentry_t *llist_search_custom (llist_t *l, + int (*compare) (llentry_t *, void *), void *user_data); llentry_t *llist_head (llist_t *l); llentry_t *llist_tail (llist_t *l);