* Add ipkg for future development
[oweals/opkg-lede.git] / void_list.h
1 /* void_list.h - the itsy package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #ifndef VOID_LIST_H
19 #define VOID_LIST_H
20
21 typedef struct void_list_elt void_list_elt_t;
22 struct void_list_elt
23 {
24     void_list_elt_t *next;
25     void *data;
26 };
27
28 typedef struct void_list void_list_t;
29 struct void_list
30 {
31     void_list_elt_t pre_head;
32     void_list_elt_t *head;
33     void_list_elt_t *tail;
34 };
35
36 static inline int void_list_empty(void_list_t *list)
37 {
38      if (list->head == NULL)
39           return 1;
40      else
41           return 0;
42 }
43
44 int void_list_elt_init(void_list_elt_t *elt, void *data);
45 void void_list_elt_deinit(void_list_elt_t *elt);
46
47 int void_list_init(void_list_t *list);
48 void void_list_deinit(void_list_t *list);
49
50 int void_list_append(void_list_t *list, void *data);
51 int void_list_push(void_list_t *list, void *data);
52 void_list_elt_t *void_list_pop(void_list_t *list);
53
54 void *void_list_remove(void_list_t *list, void_list_elt_t **iter);
55 /* remove element containing elt data, using cmp(elt->data, target_data) == 0. */
56 typedef int (*void_list_cmp_t)(const void *, const void *);
57 void *void_list_remove_elt(void_list_t *list, const void *target_data, void_list_cmp_t cmp);
58
59 #endif