mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
Static list initializer
This commit is contained in:
parent
d071aca7aa
commit
2e8b8bfcc4
@ -42,6 +42,7 @@ typedef union list { /* In fact two overlayed nodes */
|
||||
};
|
||||
} list;
|
||||
|
||||
#define STATIC_LIST_INIT(name) name = { .head = &name.tail_node, .tail = &name.head_node, .null = NULL }
|
||||
|
||||
#define NODE (node *)
|
||||
#define HEAD(list) ((void *)((list).head))
|
||||
|
Loading…
Reference in New Issue
Block a user