6 lines
92 B
C
6 lines
92 B
C
int foo (int (*bar)(void));
|
|
|
|
int foo (int (*bar)(void))
|
|
{
|
|
return bar() == 0x55 ? 0 : 1;
|
|
}
|