|
clist
A multi-mode C linked list library/implementation
|
Function definitions for clist.hThis file provides function definitions for clist.h. More...
Functions | |
| struct clist * | clist_init (size_t item_size) |
| Create a clist. More... | |
| size_t | clist_free (struct clist *clist) |
| Frees a list. More... | |
| void * | clist_append (struct clist *clist, const void *item) |
| Append an item. More... | |
| void * | clist_pop (struct clist *clist) |
| Pops the last item from a clist. More... | |