Skip to content

Instantly share code, notes, and snippets.

@0xItx
Created April 4, 2016 06:51
Show Gist options
  • Save 0xItx/7598e78f2b315ea46539476ecdd7caed to your computer and use it in GitHub Desktop.
Save 0xItx/7598e78f2b315ea46539476ecdd7caed to your computer and use it in GitHub Desktop.
First aid copy-pastables for debugging stuff
#define DBG_PRINT(fmt, ...) fprintf(stderr, "-----> %s() line %d: " fmt, __func__, __LINE__, ##__VA_ARGS__)
#define DBG_PRINT(fmt, ...) fprintf(stderr, "-----> %s -> %s() line %d: " fmt, __FILE__,_ _func__, __LINE__, ##__VA_ARGS__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment