Name: Anonymous 2008-08-29 13:31
...access individual bits in a byte in C++?
int9_t wouldn't work anyway on most platforms, and if you're worried about portability you'd probably be better to use something like int_least16_t or int_least32_t instead of int_least18_t.