I have come across this C sample code and I have no idea what it means:
#include <stdio.h>
int some_int;
int fun (some_int) int* some_int;
{
return 0;
}
int main()
{
return 0;
}
Why is fun
declared that way and what does it even mean? I can't understand the syntax.