X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_llist.h;h=c3753d83f25fe579c98af4e52fa7dbfa7fbdbecb;hb=b8f83ce0a28e0d8033c0f3bdc95aeb44a2d17381;hp=603fc87b552178e342a336539da6de7fa7fe1b9e;hpb=79d36d9eb61ac09f253769feff144383b2b665c9;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);