blob: 7c9a94d19d5acc3f948bc6d45f4dfcafcf0a725e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
struct item
{
void *data;
struct item *prev;
struct item *next;
};
/*
* Move element in item to the head of list mainlist.
*/
void movetohead(struct item **mainlist, struct item *item);
/*
* Create space for a new item and add it to the head of mainlist.
*
* Returns item or NULL if out of memory.
*/
struct item *additem(struct item **mainlist);
/*
* Delete item from list mainlist.
*/
void delitem(struct item **mainlist, struct item *item);
/*
* Free any data in current item and then delete item. Optionally
* update number of items in list if stored != NULL.
*/
void freeitem(struct item **list, int *stored,
struct item *item);
/*
* Delete all items in list. Optionally update number of items in list
* if stored != NULL.
*/
void delallitems(struct item **list, int *stored);
/*
* Print all items in mainlist on stdout.
*/
void listitems(struct item *mainlist);
|