asn1c/examples/sample.source.PKIX1/config.h

11 lines
200 B
C
Raw Permalink Normal View History

extern int opt_debug;
#define ASN_DEBUG(fmt, args...) do { \
if(opt_debug < 2) break; \
fprintf(stderr, fmt, ##args); \
2004-09-24 20:54:48 +00:00
fprintf(stderr, " (%s:%d)\n", \
__FILE__, __LINE__); \
} while(0)
2004-10-28 12:04:15 +00:00