Return value must be on a different line than the function name for it to be detected
Opened this issue · 0 comments
license-fn commented
Not detected:
int foo(a)
int a;
{
// Stuff
}
Detected:
int
foo(a)
int a;
{
// Stuff
}
Opened this issue · 0 comments
Not detected:
int foo(a)
int a;
{
// Stuff
}
Detected:
int
foo(a)
int a;
{
// Stuff
}