01-07-2015, 07:29 AM
Would the following examples be compliant with rule #8.3?
Code:
-- in t1.h
extern int foo(int);
-- t2.c
#include "t1.h"
int foo(int value) { // here(parameter name do not match)
}
<t></t>