Skip to content

Instantly share code, notes, and snippets.

@chuangx
Created March 31, 2015 19:08
Show Gist options
  • Save chuangx/c622795d96ce552d9bad to your computer and use it in GitHub Desktop.
Save chuangx/c622795d96ce552d9bad to your computer and use it in GitHub Desktop.
DPRINTF Macro in C
#define DEBUG
#ifdef DEBUG
#define DPRINTF(fmt, ...) \
fprintf(stderr, "[%s][%s]%d: " fmt, __FILE__, __func__, __LINE__, ##__VA_ARGS__);
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment