I've read an interesting code recently, but I can not identify the meaning of it:
void foo(arg1, arg2)
int arg1;
unsigned char arg2[16];
{
//some code
}
I have never seen something like that in C language before as function argument declaration and definition. I am develping software since 2003, but it is something like either old or brand new stuff. What kind of function definition style is it? As I remember, you could declare the arguments in Pascal that way, but not in C.
Andrew