1
0
Fork 0
tetris-c/include/debug.h
2026-05-10 00:20:28 +02:00

11 lines
197 B
C

#ifndef __DEBUG_H
#define __DEBUG_H
#ifdef APP_DEBUG
#define debug_printf(fmt, ...) \
printf((fmt) __VA_OPT__(,) __VA_ARGS__)
#else
#define debug_printf(fmt, ...)
#endif
#endif /* !__DEBUG_H */