Rotate an unsigned long integer left.
unsigned long _lrotl (unsigned long value, int shift);
Required Header |
<stdlib.h> |
Return Value
This function returns the rotated value.
Parameters
value
The value to rotate
shift
The number of bit positions to rotate
Remarks
The _lrotl function rotates the bits in value, in a left circular movement where no bits are lost.