opsysadjust.h

来自「linux下简单对象应用协议的开发库」· C头文件 代码 · 共 15 行

H
15
字号
/** windoze adaption header file, because that one is missing posix.
    @file opsysadjust.h
 */

#ifdef _WIN32

#if _MSC_VER > 1000
    #pragma warning (disable:4786)
#endif
/** C-standard interface for case insensitive compare */
inline int strcasecmp(const char *psz1, const char *psz2) {
    return stricmp(psz1, psz2);
}

#endif //_WIN32

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?