921e5a0eb4
From-SVN: r14840
19 lines
198 B
C
19 lines
198 B
C
foo (a, b)
|
|
{
|
|
return (a & (1 << b)) != 0;
|
|
}
|
|
|
|
bar (a, b)
|
|
{
|
|
a ^= (1 << b);
|
|
return a != 0;
|
|
}
|
|
|
|
main ()
|
|
{
|
|
int i;
|
|
for (i = 0; i < 32; i++)
|
|
printf ("%d ", foo (0x8000000f, i));
|
|
puts ("");
|
|
}
|