Home

 

Use from C++

For the C++ programming language, the header files contain the following additional statements that are included only when you use a C++ compiler:

#ifdef __cplusplus
  extern "C" {
#endif
 
/* rest of header file */
 
#ifdef __cplusplus
  }
#endif


 

Home