5 lines
75 B
C
5 lines
75 B
C
extern void foo (void);
|
|
|
|
typedef void (*func_p) (void);
|
|
|
|
func_p p1 = &foo;
|