I came across the following function declaration and I am not able to understand how exactly it works: the function is declared in the file as follows:
struct newtype {
/* some definition */
};
typedef void function1 (int* a, newtype* p);
then in another C code above declaration is used to declare another function2 as follows:
function1 function2;
void function2(int* a, newtype* p)
{
/* function definition */
}
Then function2 is used as follows:
int function3 (int, char, function1* );
/* definition */
function3(int a, char c, function2 )
{
/* function definition */
}
I am not able to understand the statement: function1 function2; and what does typedef void function1 (arguments) mean as function1 is not declared as a pointer. Can anyone explain what is happening here?