In *.h header files of a C library, should one declare functions
extern void f();
// or only
void f();
- when using only in
C - when using from
C++.
In *.h header files of a C library, should one declare functions
extern void f();
// or only
void f();
CC++.