Commit 9c2863b3 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Oops forgot that in previous commit

parent f81597cd
......@@ -599,6 +599,19 @@ static int64_t GCD( int64_t a, int64_t b )
} \
while( 0 )
#define TAB_INIT( count, tab ) \
do { \
(count) = 0; \
(tab) = NULL; \
} while(0)
#define TAB_CLEAN( count, tab ) \
do { \
if( tab ) free( tab ); \
(count)= 0; \
(tab)= NULL; \
} while(0)
#define TAB_APPEND( count, tab, p ) \
if( (count) > 0 ) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment