data_structures
|
Doubly-linked list of generic items. More...
#include <list.h>
Data Fields | |
t_link * | head |
The first link. More... | |
t_link * | tail |
The last link. More... | |
size_t | size |
The number of items in the list. More... | |
const t_type * | type |
The type of items in this list. More... | |