0
votes
Is There C Syntax For Function Pointer From Function Declaration
Not quite the same, but you can typedef the function and use it for both the prototype and the pointer.
typedef int fooFunc(int);
fooFunc foo;
fooFunc *aFunc;
…
