Extern functions in C vs C++

Viewed 85264

In *.h header files of a C library, should one declare functions

extern void f();

// or only 

void f();
  1. when using only in C
  2. when using from C++.
5 Answers
Related