You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
187 B
13 lines
187 B
4 months ago
|
typedef void (*fn_ptr_type_a_t)(int, int);
|
||
|
|
||
|
typedef void (*fn_ptr_type_a2_t)(int, int);
|
||
|
|
||
|
struct SA
|
||
|
{
|
||
|
int m1;
|
||
|
fn_ptr_type_a_t m2;
|
||
|
fn_ptr_type_a2_t m3;
|
||
|
};
|
||
|
|
||
|
void fun_obja(struct SA*);
|