4-variable-simplifier/debug.h

18 lines
241 B
C

#ifndef ZDEBUG
#define ZDEBUG 1
#endif
#if ZDEBUG
#define zprintf(fmt, ...) \
printf(fmt, ## __VA_ARGS__);
#else
#define zprintf(...);
#endif
#define TODO \
assert(!"TODO");
#define CHECK \
assert(!"CHECK");