56 node->
next = new_node;
89 if (list->
next == node) {
static list_node_t * list_remove_head(list_node_t *list)
Removes the head of the list and returns it.
struct list_node list_node_t
List node structure.
static void list_add(list_node_t *node, list_node_t *new_node)
Insert object into list.
static list_node_t * list_remove(list_node_t *list, list_node_t *node)
Removes the node from the list.
struct list_node * next
pointer to next list entry