libusual
0.1
|
Structure for both list nodes and heads. More...
Data Fields | |
struct List * | next |
Pointer to next node or head. | |
struct List * | prev |
Pointer to previous node or head. |
Structure for both list nodes and heads.
It is meant to be embedded in parent structure, which can be acquired with container_of().
struct List* List::next |
Pointer to next node or head.
Referenced by list_append(), list_del(), list_empty(), list_first(), list_init(), list_pop(), and list_prepend().
struct List* List::prev |
Pointer to previous node or head.
Referenced by list_append(), list_del(), list_init(), list_last(), and list_prepend().