Linked List
Linked List implementation in C
|
Node structure definition. More...
#include <Linked_list.h>
Data Fields | |
void * | data |
node_t * | next |
Node structure definition.
void* node_t::data |
Pointer to the data of the node
node_t* node_t::next |
Pointer to the next node