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 );


syntax highlighted by Code2HTML, v. 0.9.1