Name: Anonymous 2009-05-08 17:12
Bitfields (
or bit operations (
struct s { unsigned char w:1, x:1, y:2, z:4; };)or bit operations (
#define get_y(s) ((s >> 4) & 3))?Yes, I'm a premature optimizer.