当前位置: 技术问答>linux和unix
extern "C" 在linux上的问题
来源: 互联网 发布时间:2016-01-11
本文导语: #ifdef _cplusplus extern "C"{ #endif int strlen(char* string) #ifdef _cplusplus } #endif 是不是_cplusplus 在linux G++里面没有定义阿 | // #ifdef _cplusplus #ifdef __cplusplus 除非你自己定义了_cplusplus ...
#ifdef _cplusplus
extern "C"{
#endif
int strlen(char* string)
#ifdef _cplusplus
}
#endif
是不是_cplusplus 在linux G++里面没有定义阿
extern "C"{
#endif
int strlen(char* string)
#ifdef _cplusplus
}
#endif
是不是_cplusplus 在linux G++里面没有定义阿
|
// #ifdef _cplusplus
#ifdef __cplusplus
除非你自己定义了_cplusplus
#ifdef __cplusplus
除非你自己定义了_cplusplus