#include <simplelist.h>
Data Fields | |
const void * | element |
Linked-list node data. | |
struct tagSimplenode_t * | next |
Next element. |
A node encapsulates an arbitrary data element, and furthermore contains a pointer to the next element of the list (or NULL if none).
Note that the element should logically be read-only.
const void* tagSimplenode_t::element |
Linked-list node data.
Referenced by simplelist_Append(), simplelist_GetElem(), simplelist_GetIterObj(), and simplelist_GetLastElem().
struct tagSimplenode_t* tagSimplenode_t::next [read] |