X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_llist.h;h=c3753d83f25fe579c98af4e52fa7dbfa7fbdbecb;hb=0a73779531039d715e8ca405658c65ba03fad408;hp=603fc87b552178e342a336539da6de7fa7fe1b9e;hpb=5afa2f82d43e2a7952d8f347f6f40b5778c59db8;p=collectd.git diff --git a/src/utils_llist.h b/src/utils_llist.h index 603fc87b..c3753d83 100644 --- a/src/utils_llist.h +++ b/src/utils_llist.h @@ -44,13 +44,15 @@ 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_head (llist_t *l);