#include <list.h>
Functions | |
void | list_clear (List *list) |
Clear the list. | |
ListIterator | list_insert (ListIterator position, void *value) |
Insert into a list. | |
void * | list_remove (ListIterator position) |
Remove from a list. | |
unsigned int | list_size (List *list) |
Count list elements. |
Hassaan Moin Khan (hkhan)
|
Clear the list. Clears the list to be empty.
|
|
Insert into a list. Inserts a new value before the specified position in a list.
|
|
Remove from a list. Remove the specified position from a list.
|
|
Count list elements. Return the number of elements in a list.
|