This one is quite obviously a function pointer :
typedef int (* foobar) (int a, unsigned char *b, unsigned int c);
But what does this one do?
typedef int (foobar *) (int a, unsigned char *b, unsigned int c);
|
This one is quite obviously a function pointer :
But what does this one do?
|
|||||
|
|
It produces a compiler error, at least in GCC 4.3:
|
|||||||||
|