2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00
xNBA/src/include/debug.h

29 lines
560 B
C
Raw Normal View History

2005-03-08 18:53:11 +00:00
#ifndef DEBUG_H
#define DEBUG_H
//#include <lib.h>
extern int last_putchar;
/* Defining DEBUG_THIS before including this file enables debug() macro
* for the file. DEBUG_ALL is for global control. */
#if DEBUG_THIS || DEBUG_ALL
#define DEBUG 1
#else
#undef DEBUG
#endif
#if DEBUG
# define debug(...) \
((last_putchar=='\n' ? printf("%s: ", __FUNCTION__) : 0), \
printf(__VA_ARGS__))
# define debug_hexdump hexdump
#else
# define debug(...) /* nothing */
# define debug_hexdump(...) /* nothing */
#endif
#define debugx debug
#endif /* DEBUG_H */