extern C的作用
#ifdef __cplusplus extern "C" { #endif //一段代码 #ifdef __cplusplus } #endif
https://stackoverflow.com/questions/3789340/combining-c-and-c-how-does-ifdef-cplusplus-work
extern C告诉编译器,这段代码用C的方式编译和链接,C++可以调用这段代码
c中没有函数重载,c++编译的目标文件里函数名字和c处理方式编译是不一样的,要兼容c代码。