Go to the documentation of this file.
20 #define GLOBAL_DEBUG 0
25 #warning "DEBUG Output Enabled"
33 #define STRINGIFY(x) #x
34 #define TOSTRING(x) STRINGIFY(x)
35 #define AT __FILE__ ":" TOSTRING(__LINE__) ":"
46 #define DEBUG(fmt, ...) \
47 do { if (DEBUG_VAL) printf("%16s%-36s " fmt, AT, __func__, ## __VA_ARGS__); } while(0)