X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Flist.h;h=33214f44832682681f001b06bb8f7149cbe20055;hb=d917c8cb6b69475d568ccbe82389b9f2b3eb5e80;hp=a45803995bdce3e6fe3f5a273a0015aa16b2834e;hpb=4574b04f79d79d53492b7e0eb592d64ff9b2362b;p=tinc diff --git a/src/list.h b/src/list.h index a4580399..33214f44 100644 --- a/src/list.h +++ b/src/list.h @@ -55,6 +55,9 @@ extern void list_free_node(list_t *, list_node_t *); extern list_node_t *list_insert_head(list_t *, void *); extern list_node_t *list_insert_tail(list_t *, void *); extern list_node_t *list_insert_after(list_t *, list_node_t *, void *); +extern list_node_t *list_insert_before(list_t *, list_node_t *, void *); + +extern void list_delete(list_t *, const void *); extern void list_unlink_node(list_t *, list_node_t *); extern void list_delete_node(list_t *, list_node_t *); @@ -76,4 +79,6 @@ extern void list_delete_list(list_t *); extern void list_foreach(list_t *, list_action_t); extern void list_foreach_node(list_t *, list_action_node_t); -#endif /* __TINC_LIST_H__ */ +#define list_each(type, item, list) (type *item = (type *)1; item; item = NULL) for(list_node_t *node = (list)->head, *next; item = node ? node->data : NULL, next = node ? node->next : NULL, node; node = next) + +#endif /* __TINC_LIST_H__ */