Give a oneline C expression to test whether a number is a power of 2?
#define ISPOW2(x) ( (x + (x-1) ) == (x<<1 + 1) )