1typedef unsigned int uint32_t;
2static void IP(uint32_t v[2])
3{
4    v[0] = ((v[0] << 1) | ((v[0] >> 31) & 1L)) & 0xffffffffL;
5}
6
7