C++ 中引用C extern "C" 的用法

#ifndef cExample_H_ #define cExample_H_ #ifdef __cplusplus extern "C" { #endif int addNumber(int a, int b); #ifdef __cplusplus } #endif #endif

你可能感兴趣的:(C++,c)