Skip to content

Instantly share code, notes, and snippets.

@xgalaxy
Created April 24, 2017 00:34
Show Gist options
  • Save xgalaxy/d76dc46145b7ca3cbc24a4836fd03c78 to your computer and use it in GitHub Desktop.
Save xgalaxy/d76dc46145b7ca3cbc24a4836fd03c78 to your computer and use it in GitHub Desktop.
Easy preprocessor defines
// From: http://www.codersnotes.com/notes/easy-preprocessor-defines/
#define ON +
#define OFF -
#define USING(x) ((1 x 1) == 2)
// Example usage:
#define BIG_ENDIAN ON
#if USING(BIG_ENDIAN)
// do whatever
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment