1 int foo (int (*bar)(void));
2
3 int foo (int (*bar)(void))
4 {
5 return bar() == 0x55 ? 0 : 1;
6 }
1 int foo (int (*bar)(void));
2
3 int foo (int (*bar)(void))
4 {
5 return bar() == 0x55 ? 0 : 1;
6 }