M2_SETI/T2/tp/exercice-1/debug.h

6 lines
91 B
C
Raw Normal View History

2022-11-18 15:07:43 +01:00
//C macro to active debug printf
#ifdef DEBUG
# define D(x) x
#else
# define D(x)
#endif