enum Bits { BIT0 = 1, /* The first bit */ BIT1 = 2, /* The next bit */ BIT2 = 4 /* The last bit */ }; /* set the bits! */ void set_bits( enum Bits bits );