Rotates an unsigned 32-bit value to the right by a specified number of bits.
#include <stdlib.h>
uint32_t rotr32 (
uint32_t value,
int shift);
(IN) Specifies the value to rotate.
(IN) Specifies the number of bits to rotate.
Returns the rotated value.
The rotr32 function rotates the unsigned 32-bit value to the right by the number of bits specified in the shift parameter.