I have just seen C code in the following manner:
void foo(par1, par2)
int par1;
short par2;
{
// some code ...
}
What is this called, if you add code between parameter list and function body? Did not find it by googling. What is allowed to do there and what not?