921e5a0eb4
From-SVN: r14840
12 lines
104 B
C
12 lines
104 B
C
int
|
|
foo (x, c)
|
|
int x;
|
|
{
|
|
return x >> 24 & 0xff;
|
|
}
|
|
|
|
bar (x)
|
|
{
|
|
return (int)(x & 0xfffff) << 13;
|
|
}
|