summaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list.h')
-rw-r--r--src/list.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h
index 4a6fe26..7afbe8b 100644
--- a/src/list.h
+++ b/src/list.h
@@ -1,3 +1,19 @@
+/*
+ * Ivy, C interface
+ *
+ * Copyright (C) 1997-2000
+ * Centre d'Études de la Navigation Aérienne
+ *
+ * Simple lists in C
+ *
+ * Authors: François-Régis Colin <fcolin@cena.dgac.fr>
+ *
+ * $Id$
+ *
+ * Please refer to file version.h for the
+ * copyright notice regarding this software
+ */
+
#define LIST_ITER( list, p, cond ) \
p = list; \
while ( p && (cond) ) p = p->next