Wave Arts VQE  1.00
Voice Quality Enhancement
Classes | Typedefs | Functions
WaList.h File Reference

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)
ITEMlistDequeue (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)

Detailed Description

Linked list.

This is ancient code to implement single linked lists.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines