BeRTOS
|
Head of a doubly-linked list of Node
structs.
More...
#include <list.h>
Head of a doubly-linked list of Node
structs.
Lists must be initialized with LIST_INIT() prior to use.
Nodes can be added and removed from either end of the list with O(1) performance. Iterating over these lists can be tricky: use the FOREACH_NODE() macro instead.