ReactOS 0.4.16-dev-937-g7afcd2a
strnicmp.cpp File Reference
#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Include dependency graph for strnicmp.cpp:

Go to the source code of this file.

Functions

int __cdecl _strnicmp_l (char const *const lhs, char const *const rhs, size_t const count, _locale_t const plocinfo)
 
int __cdecl __ascii_strnicmp (char const *const lhs, char const *const rhs, size_t const count)
 
int __cdecl _strnicmp (char const *const lhs, char const *const rhs, size_t const count)
 

Function Documentation

◆ __ascii_strnicmp()

int __cdecl __ascii_strnicmp ( char const *const  lhs,
char const *const  rhs,
size_t const  count 
)

Definition at line 81 of file strnicmp.cpp.

86{
87 if (count == 0)
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
95 int result;
96 int lhs_value;
97 int rhs_value;
98 size_t remaining = count;
99 do
100 {
101 lhs_value = __ascii_tolower(*lhs_ptr++);
102 rhs_value = __ascii_tolower(*rhs_ptr++);
103 result = lhs_value - rhs_value;
104 }
105 while (result == 0 && lhs_value != 0 && --remaining != 0);
106
107 return result;
108}
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLuint64EXT * result
Definition: glext.h:11304
__forceinline int __CRTDECL __ascii_tolower(int const _C)
Definition: ctype.h:152

Referenced by _strnicmp().

◆ _strnicmp()

int __cdecl _strnicmp ( char const *const  lhs,
char const *const  rhs,
size_t const  count 
)

Definition at line 112 of file strnicmp.cpp.

117{
118 if (!__acrt_locale_changed())
119 {
120 /* validation section */
121 _VALIDATE_RETURN(lhs != nullptr, EINVAL, _NLSCMPERROR);
122 _VALIDATE_RETURN(rhs != nullptr, EINVAL, _NLSCMPERROR);
124
125 return __ascii_strnicmp(lhs, rhs, count);
126 }
127
128 return _strnicmp_l(lhs, rhs, count, nullptr);
129}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define INT_MAX
Definition: intsafe.h:150
#define _NLSCMPERROR
Definition: string.h:19
int __cdecl __ascii_strnicmp(char const *const lhs, char const *const rhs, size_t const count)
Definition: strnicmp.cpp:81
int __cdecl _strnicmp_l(char const *const lhs, char const *const rhs, size_t const count, _locale_t const plocinfo)
Definition: strnicmp.cpp:41

◆ _strnicmp_l()

int __cdecl _strnicmp_l ( char const *const  lhs,
char const *const  rhs,
size_t const  count,
_locale_t const  plocinfo 
)

Definition at line 41 of file strnicmp.cpp.

47{
48 /* validation section */
49 _VALIDATE_RETURN(lhs != nullptr, EINVAL, _NLSCMPERROR);
50 _VALIDATE_RETURN(rhs != nullptr, EINVAL, _NLSCMPERROR);
52
53 if (count == 0)
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
61 _LocaleUpdate _loc_update(plocinfo);
62
63 int result;
64 int lhs_value;
65 int rhs_value;
66 size_t remaining = count;
67 do
68 {
69 lhs_value = _tolower_fast_internal(*lhs_ptr++, _loc_update.GetLocaleT());
70 rhs_value = _tolower_fast_internal(*rhs_ptr++, _loc_update.GetLocaleT());
71 result = lhs_value - rhs_value;
72 }
73 while (result == 0 && lhs_value != 0 && --remaining != 0);
74
75 return result;
76}
_Check_return_ __forceinline unsigned char __cdecl _tolower_fast_internal(_In_ unsigned char const c, _In_ _locale_t const locale)
_locale_t plocinfo
Definition: ismbbyte.cpp:75

Referenced by _strnicmp().