#include <linked_list.h>
Data Fields | |
struct struct_linked_list_node_t * | next |
void * | data |
lib/utils/include/linked_list.h This structure defines a simple linked list node, i.e. some data together with a pointer to the next node.
Definition at line 51 of file linked_list.h.
struct struct_linked_list_node_t* struct_linked_list_node_t::next [read] |
Pointer to the next node of the linked list.
Definition at line 55 of file linked_list.h.
Pointer to the node data.
Definition at line 59 of file linked_list.h.