Skip to content

Instantly share code, notes, and snippets.

@acoomans
Last active August 29, 2015 13:57
Show Gist options
  • Save acoomans/9422386 to your computer and use it in GitHub Desktop.
Save acoomans/9422386 to your computer and use it in GitHub Desktop.
C Pre-processor macro Stringification
// http://gcc.gnu.org/onlinedocs/cpp/Stringification.html
#define xstr(s) str(s)
#define str(s) #s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment