M2_SETI/T2/tp/exercice-1/debug.h
2022-11-18 15:07:43 +01:00

6 lines
No EOL
91 B
C
Executable file

//C macro to active debug printf
#ifdef DEBUG
# define D(x) x
#else
# define D(x)
#endif