X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Flist.h;h=d06415216367a9c53683c70473018b46ba565c46;hb=4e633014a71e02a5423cf8a04efe4f90eb3bd86b;hp=4a863167e233abd24831eaebf120a60d2253f9fa;hpb=f62b4a91344bd0de09e7fb4e4c8c1993ffc027c3;p=meshlink diff --git a/src/list.h b/src/list.h index 4a863167..d0641521 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 @@ -81,4 +80,4 @@ extern void list_foreach_node(list_t *, list_action_node_t); #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__ */ +#endif /* __TINC_LIST_H__ */