|
Wave Arts VQE
1.00
Voice Quality Enhancement
|
Linked list. More...
Go to the source code of this file.
Classes | |
| struct | item_tag |
| struct | LIST |
| struct | list_tag |
Typedefs | |
| typedef struct item_tag | ITEM |
| typedef struct list_tag | LIST_ITEM |
Functions | |
| void | listInit (LIST *list) |
| void | listEnqueue (LIST *list, ITEM *item) |
| ITEM * | listDequeue (LIST *list) |
| int | listDelete (LIST *list, ITEM *item) |
| int | listReplace (LIST *list, ITEM *item, ITEM *newItem) |
| void | listPrepend (LIST *list, ITEM *item) |
| void | listFunc (LIST *list, void(*func)(ITEM *)) |
| int | listCount (LIST *list) |
| void | listInsert (LIST *list, ITEM *in, int(*func)(ITEM *, ITEM *)) |
| int | listIsEmpty (LIST *list) |
Linked list.
This is ancient code to implement single linked lists.
1.7.5.1