summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfcolin2008-05-20 13:57:49 +0000
committerfcolin2008-05-20 13:57:49 +0000
commitd2e9c196ab8ef40cb53be7dc26cf65920c473077 (patch)
tree7f0c60e56982e8280f6317d7062e21fc57972e02 /src
parent8d9e71b260968c5926fabe963ff9a935060e3082 (diff)
downloadivy-c-d2e9c196ab8ef40cb53be7dc26cf65920c473077.zip
ivy-c-d2e9c196ab8ef40cb53be7dc26cf65920c473077.tar.gz
ivy-c-d2e9c196ab8ef40cb53be7dc26cf65920c473077.tar.bz2
ivy-c-d2e9c196ab8ef40cb53be7dc26cf65920c473077.tar.xz
test SVN
Diffstat (limited to 'src')
-rw-r--r--src/list.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/list.h b/src/list.h
index ed6881c..bac246e 100644
--- a/src/list.h
+++ b/src/list.h
@@ -75,6 +75,7 @@ pour eviter de chainer un objet non initialise
#define IVY_LIST_EACH( list, p ) \
for ( p = list ; p ; p = p -> next )
+/* le pointeur next est sauvegarder avant l'iteration */
#define IVY_LIST_EACH_SAFE( list, p, nxt )\
for ( p = list ; (nxt = p ? p->next: p ),p ; p = nxt )