• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 typedef void (*fn_ptr_type_b_t)(int, int, char);
2 
3 struct SB
4 {
5   int m1;
6   fn_ptr_type_b_t m2;
7 };
8 
9 void fun_objb(struct SB*);
10