📄 helper.c
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
#include <windows.h>
// Implementation is not provided in fulllibc, so this is copied from coredll
//
int _strnicmp(const char *psz1, const char *psz2, size_t cb) {
unsigned char ch1 = 0, ch2 = 0; // Zero for case cb = 0.
while (cb--) {
ch1 = _tolower(*(psz1++));
ch2 = _tolower(*(psz2++));
if (!ch1 || (ch1 != ch2))
break;
}
return (ch1 - ch2);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -