xchg
#define xchg(ptr, value) \
#define xchg(a, b, type) { type t; t = a; a = b; b = t; }
#undef xchg