What\'s a fast way to round up an unsigned int to a multiple of 4?
int
4
A multiple of 4 has the two least significant bits 0, right? So I could
(myint + 4) & 0xFFFC