1int
2foo (x, c)
3     int x;
4{
5  return x >> 24 & 0xff;
6}
7
8bar (x)
9{
10  return (int)(x & 0xfffff) << 13;
11}
12