Use from C++

For the C++ programming language, the header files contain the following additional statements that are included only when we use a C++ compiler:
#ifdef __cplusplus
  extern "C" {
#endif

/* rest of header file */

#ifdef __cplusplus
  }
#endif
Parent topic: C programming