bit
#define bit(h, b) ((h)[(b) >> 3] & 1 << ((b) & 7)) /* bit test */
#define bit(w,i) ((w)&(1<<(i)))