summaryrefslogtreecommitdiff
path: root/src/list.h
diff options
context:
space:
mode:
authorsc2000-08-07 11:29:29 +0000
committersc2000-08-07 11:29:29 +0000
commitd96f9c80104d678128ac5c116a9e85ad41cc912a (patch)
tree84c75999810c35211b9b3dcbea29670825f98cce /src/list.h
parenta0ec86736e71c2c1604c5f76cfe8242ff4f6e8d3 (diff)
downloadivy-c-d96f9c80104d678128ac5c116a9e85ad41cc912a.zip
ivy-c-d96f9c80104d678128ac5c116a9e85ad41cc912a.tar.gz
ivy-c-d96f9c80104d678128ac5c116a9e85ad41cc912a.tar.bz2
ivy-c-d96f9c80104d678128ac5c116a9e85ad41cc912a.tar.xz
Fixed headers
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