Created
October 1, 2012 05:08
-
-
Save enjoylife/3809558 to your computer and use it in GitHub Desktop.
swap # define
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define SWAP(x, y) do { typeof(x) temp##x##y = x; x = y; y = temp##x##y; } while (0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment