Fix compile time issues
[collectd.git] / src / daemon / utils_llist.h
1 /**
2  * collectd - src/utils_llist.h
3  * Copyright (C) 2006       Florian Forster <octo at collectd.org>
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian Forster <octo at collectd.org>
25  */
26
27 #ifndef UTILS_LLIST_H
28 #define UTILS_LLIST_H 1
29
30 /*
31  * Data types
32  */
33 struct llentry_s {
34   char *key;
35   void *value;
36   struct llentry_s *next;
37 };
38 typedef struct llentry_s llentry_t;
39
40 struct llist_s;
41 typedef struct llist_s llist_t;
42
43 /*
44  * Functions
45  */
46 llist_t *llist_create(void);
47 void llist_destroy(llist_t *l);
48
49 llentry_t *llentry_create(char *key, void *value);
50 void llentry_destroy(llentry_t *e);
51
52 void llist_append(llist_t *l, llentry_t *e);
53 void llist_prepend(llist_t *l, llentry_t *e);
54 void llist_remove(llist_t *l, llentry_t *e);
55
56 int llist_size(llist_t *l);
57
58 llentry_t *llist_search(llist_t *l, const char *key);
59 llentry_t *llist_search_custom(llist_t *l, int (*compare)(llentry_t *, void *),
60                                void *user_data);
61
62 llentry_t *llist_head(llist_t *l);
63 llentry_t *llist_tail(llist_t *l);
64
65 #endif /* UTILS_LLIST_H */