Rotate an unsigned long integer right.
unsigned long _lrotr (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 _lrotr function rotates the bits in value, in a right circular movement where no bits are lost.