2 * collectd - src/utils_llist.c
3 * Copyright (C) 2006 Florian Forster <octo at verplant.org>
5 * This program is free software; you can redistribute it and/
6 * or modify it under the terms of the GNU General Public Li-
7 * cence as published by the Free Software Foundation; only
8 * version 2 of the Licence is applicable.
10 * This program is distributed in the hope that it will be use-
11 * ful, but WITHOUT ANY WARRANTY; without even the implied war-
12 * ranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public Licence for more details.
15 * You should have received a copy of the GNU General Public
16 * Licence along with this program; if not, write to the Free
17 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
21 * Florian Forster <octo at verplant.org>
29 #include "utils_llist.h"
44 llist_t *llist_create (void)
48 ret = (llist_t *) malloc (sizeof (llist_t));
52 memset (ret, '\0', sizeof (llist_t));
57 void llist_destroy (llist_t *l)
62 for (e_this = l->head; e_this != NULL; e_this = e_next)
64 e_next = e_this->next;
65 llentry_destroy (e_this);
71 llentry_t *llentry_create (char *key, void *value)
75 e = (llentry_t *) malloc (sizeof (llentry_t));
86 void llentry_destroy (llentry_t *e)
91 void llist_append (llist_t *l, llentry_t *e)
105 void llist_prepend (llist_t *l, llentry_t *e)
116 void llist_remove (llist_t *l, llentry_t *e)
121 while ((prev != NULL) && (prev->next != e))
125 prev->next = e->next;
134 int llist_size (llist_t *l)
136 return (l ? l->size : 0);
139 llentry_t *llist_search (llist_t *l, const char *key)
143 for (e = l->head; e != NULL; e = e->next)
144 if (strcmp (key, e->key) == 0)
150 llentry_t *llist_head (llist_t *l)
155 llentry_t *llist_tail (llist_t *l)