libwreport  3.29
trace.h
1 #ifndef WREPORT_BUFR_TRACE_H
2 #define WREPORT_BUFR_TRACE_H
3 
4 // #define TRACE_DECODER
5 
6 #ifdef TRACE_DECODER
7 #define TRACE(...) fprintf(stderr, __VA_ARGS__)
8 #define IFTRACE if (1)
9 #else
10 #define TRACE(...) do { } while (0)
11 #define IFTRACE if (0)
12 #endif
13 
14 #endif