#include <simplelist.h>
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.
Data Fields | |
| const void * | element |
| Linked-list node data. | |
| tagSimplenode_t * | next |
| Next element. | |
1.4.6