Listing 1 Example of Header File with and C++ Prototypes

example1.h:

#ifdef __cplusplus
extern "C" {
#endif

int foo(int x);
int bar(int x);

#ifdef __cplusplus
}
#endif