如果在C++中调用C的函数,要加一个声明extern "C " void test();表明这个函数是C函数
如果在c头文件中有
#ifdef __cplusplus
extern "C " {
#endif
//函数声明
#ifdef __cplusplus
}
#endif
则在C++中include 这个头文件就可以
如果在c头文件中有
#ifdef __cplusplus
extern "C " {
#endif
//函数声明
#ifdef __cplusplus
}
#endif
则在C++中include 这个头文件就可以