rotate an unsigned integer to the left
#include <stdlib.h>
unsigned int _rotl( unsigned int value,
unsigned int shift );
The _rotl() function rotates the unsigned integer, determined by value, to the left by the number of bits specified in shift. If you port an application using _rotl() between a 16-bit and a 32-bit environment, you'll get different results because of the difference in the size of integers.
the rotated value
#include <stdio.h>
#include <stdlib.h>
unsigned int mask = 0x0F00;
void main()
{
mask = _rotl( mask, 4 );
printf( "%04X\n", mask );
}
produces the output:
F000
WATCOM
All (except DOS/PM)