X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=lib%2Flist.h;h=86e17e62d15ddc8fc7f99727304f3f0db6f7094d;hp=33035734cc10d595f517eed39c5192bd00649ed5;hb=2626c641aa714a8d776f1bb16340586d935aa6b1;hpb=5d1145f2c4b3b8261ca0aa0e89a2daf321640f0b diff --git a/lib/list.h b/lib/list.h index 3303573..86e17e6 100644 --- a/lib/list.h +++ b/lib/list.h @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: list.h,v 1.1.2.1 2000/11/15 22:04:48 zarq Exp $ + $Id: list.h,v 1.1.2.2 2000/11/16 22:13:09 zarq Exp $ */ #ifndef __TINC_LIST_H__ @@ -39,6 +39,9 @@ typedef struct list_t { list_callbacks_t *callbacks; } list_t; +extern list_t *list_new(void); +extern void list_append(list_t *, void *); +extern void list_forall_nodes(list_t *, int (*)(void *)); #endif /* __TINC_LIST_H__ */