X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Flist.h;h=c99082844916e210770c7ede8ba7552e93389b19;hb=87b60ec7e32d14ce0ebe20bb19a342d9e0aac70a;hp=9d1c81b8bbf16f37d2fc91c8ad9aeea507028816;hpb=a86faaf34711d6b0f278b670d70a229a3cf0d479;p=meshlink diff --git a/src/list.h b/src/list.h index 9d1c81b8..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-2012 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; @@ -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 /* __MESHLINK_LIST_H__ */