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