X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Flist.h;h=c99082844916e210770c7ede8ba7552e93389b19;hb=1c31a5dc4b17c274aac48444a3fe0da35a2b409c;hp=4fe48dbeb465fc10ca0c65ad1982f7f0dfaff002;hpb=f5dc136cfd7a3a195b75f7174722734e25f30fd9;p=meshlink diff --git a/src/list.h b/src/list.h index 4fe48dbe..c9908284 100644 --- a/src/list.h +++ b/src/list.h @@ -1,7 +1,6 @@ /* list.h -- header file for list.c - Copyright (C) 2000-2005 Ivo Timmermans - 2000-2006 Guus Sliepen + Copyright (C) 2014 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,8 +17,8 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __TINC_LIST_H__ -#define __TINC_LIST_H__ +#ifndef __MESHLINK_LIST_H__ +#define __MESHLINK_LIST_H__ typedef struct list_node_t { struct list_node_t *prev; @@ -57,6 +56,8 @@ 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 *); @@ -77,4 +78,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 /* __MESHLINK_LIST_H__ */