...
Code Block | ||
---|---|---|
| ||
/* Swaps two values, requiresRequires tmp variable to be defined */ #define SWAP(x, y) \ tmp = x; \ x = y; \ y = tmp |
...
Code Block | ||
---|---|---|
| ||
/* Swaps two values, requiresRequires tmp variable to be defined */ #define SWAP(x, y) \ do { \ tmp = x; \ x = y; \ y = tmp; } \ while (0) |
...