|
solidc
Robust collection of general-purpose cross-platform C libraries and data structures designed for rapid and safe development in C
|
#include <slist.h>
Public Attributes | |
| void * | data |
| struct slist_node * | next |
A node in a singly-linked list. Each node contains a pointer to element data and a pointer to the next node.
| void* slist_node::data |
Pointer to element data stored inline in the node.
Definition at line 22 of file slist.h.
Referenced by slist_get(), slist_index_of(), and slist_node_new().
| struct slist_node* slist_node::next |
Pointer to the next node in the list. NULL if this is the tail.
Definition at line 24 of file slist.h.
Referenced by slist_clear(), slist_get(), slist_index_of(), slist_insert(), slist_node_new(), slist_pop_front(), slist_push_back(), slist_push_front(), and slist_remove().