gpt4 book ai didi

visual-studio-2008 - 错误C3861: 'strcasecmp':在Visual Studio 2008中找不到标识符吗?

转载 作者:行者123 更新时间:2023-12-04 00:03:14 30 4
gpt4 key购买 nike

我正在尝试将应用程序从cygwin移植到Visual Studio 2008 Express
但我收到此错误:

error C3861: 'strcasecmp': identifier not found  

在这种类型的代码中:
if (!strcasecmp("A0", s))  ....

vs的替代品是什么?我在网上找不到任何东西

最佳答案

将此添加到您的预编译头文件(或其他一些config.h)中

#ifdef _MSC_VER 
//not #if defined(_WIN32) || defined(_WIN64) because we have strncasecmp in mingw
#define strncasecmp _strnicmp
#define strcasecmp _stricmp
#endif

关于visual-studio-2008 - 错误C3861: 'strcasecmp':在Visual Studio 2008中找不到标识符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3694723/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com