From: Felix Fietkau Date: Thu, 5 Jun 2014 13:28:45 +0000 (+0200) Subject: vlist: add static initializer macros X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=commitdiff_plain;h=949f0d00bf12c90dcf4acc8479da184f1cd81673 vlist: add static initializer macros Signed-off-by: Felix Fietkau --- diff --git a/vlist.h b/vlist.h index 9e188e2..8170abf 100644 --- a/vlist.h +++ b/vlist.h @@ -41,6 +41,19 @@ struct vlist_node { int version; }; +#define VLIST_TREE_INIT(_name, _comp, _update, _keep_old, _no_delete) \ + { \ + .avl = AVL_TREE_INIT(_name.avl, _comp, false, NULL), \ + .update = _update, \ + .version = 1, \ + .keep_old = _keep_old, \ + .no_delete = _no_delete, \ + } + +#define VLIST_TREE(_name, ...) \ + struct vlist_tree _name = \ + VLIST_TREE_INIT(_name, __VA_ARGS__) + void vlist_init(struct vlist_tree *tree, avl_tree_comp cmp, vlist_update_cb update); #define vlist_find(tree, name, element, node_member) \