SET_BIT
#define SET_BIT(a, b) ((a) | (1 << (b)))
#define SET_BIT(field, bit) field[(bit) >> 3] |= 1 << ((bit) & 7)