#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ __ascii_strnicmp()
Definition at line 81 of file strnicmp.cpp.
86{
88 {
89 return 0;
90 }
91
92 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
93 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
94
96 int lhs_value;
97 int rhs_value;
98 size_t remaining =
count;
99 do
100 {
103 result = lhs_value - rhs_value;
104 }
105 while (
result == 0 && lhs_value != 0 && --remaining != 0);
106
108}
GLuint GLuint GLsizei count
__forceinline int __CRTDECL __ascii_tolower(int const _C)
Referenced by _strnicmp().
◆ _strnicmp()
Definition at line 112 of file strnicmp.cpp.
117{
118 if (!__acrt_locale_changed())
119 {
120
124
126 }
127
129}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl __ascii_strnicmp(char const *const lhs, char const *const rhs, size_t const count)
int __cdecl _strnicmp_l(char const *const lhs, char const *const rhs, size_t const count, _locale_t const plocinfo)
◆ _strnicmp_l()
Definition at line 41 of file strnicmp.cpp.
47{
48
52
54 {
55 return 0;
56 }
57
58 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
59 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
60
62
64 int lhs_value;
65 int rhs_value;
66 size_t remaining =
count;
67 do
68 {
71 result = lhs_value - rhs_value;
72 }
73 while (
result == 0 && lhs_value != 0 && --remaining != 0);
74
76}
_Check_return_ __forceinline unsigned char __cdecl _tolower_fast_internal(_In_ unsigned char const c, _In_ _locale_t const locale)
Referenced by _strnicmp().