📄 opsysadjust.h
字号:
/** 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -