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

Go to the source code of this file.

Functions

int __cdecl _stricmp_l (char const *const lhs, char const *const rhs, _locale_t const plocinfo)
 
int __cdecl __ascii_stricmp (char const *const lhs, char const *const rhs)
 
int __cdecl _stricmp (char const *const lhs, char const *const rhs)
 

Function Documentation

◆ __ascii_stricmp()

int __cdecl __ascii_stricmp ( char const *const  lhs,
char const *const  rhs 
)

Definition at line 68 of file stricmp.cpp.

72{
73 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
74 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
75
76 int result;
77 int lhs_value;
78 int rhs_value;
79 do
80 {
81 lhs_value = __ascii_tolower(*lhs_ptr++);
82 rhs_value = __ascii_tolower(*rhs_ptr++);
83 result = lhs_value - rhs_value;
84 }
85 while (result == 0 && lhs_value != 0);
86
87 return result;
88}
GLuint64EXT * result
Definition: glext.h:11304
__forceinline int __CRTDECL __ascii_tolower(int const _C)
Definition: ctype.h:152

Referenced by _stricmp().

◆ _stricmp()

int __cdecl _stricmp ( char const *const  lhs,
char const *const  rhs 
)

Definition at line 90 of file stricmp.cpp.

94{
95 if (!__acrt_locale_changed())
96 {
97 /* validation section */
98 _VALIDATE_RETURN(lhs != nullptr, EINVAL, _NLSCMPERROR);
99 _VALIDATE_RETURN(rhs != nullptr, EINVAL, _NLSCMPERROR);
100
101 return __ascii_stricmp(lhs, rhs);
102 }
103
104 return _stricmp_l(lhs, rhs, nullptr);
105}
#define EINVAL
Definition: acclib.h:90
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define _NLSCMPERROR
Definition: string.h:19
int __cdecl __ascii_stricmp(char const *const lhs, char const *const rhs)
Definition: stricmp.cpp:68
int __cdecl _stricmp_l(char const *const lhs, char const *const rhs, _locale_t const plocinfo)
Definition: stricmp.cpp:39

◆ _stricmp_l()

int __cdecl _stricmp_l ( char const *const  lhs,
char const *const  rhs,
_locale_t const  plocinfo 
)

Definition at line 39 of file stricmp.cpp.

44{
45 /* validation section */
46 _VALIDATE_RETURN(lhs != nullptr, EINVAL, _NLSCMPERROR);
47 _VALIDATE_RETURN(rhs != nullptr, EINVAL, _NLSCMPERROR);
48
49 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
50 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
51
52 _LocaleUpdate _loc_update(plocinfo);
53
54 int result;
55 int lhs_value;
56 int rhs_value;
57 do
58 {
59 lhs_value = _tolower_fast_internal(*lhs_ptr++, _loc_update.GetLocaleT());
60 rhs_value = _tolower_fast_internal(*rhs_ptr++, _loc_update.GetLocaleT());
61 result = lhs_value - rhs_value;
62 }
63 while (result == 0 && lhs_value != 0);
64
65 return result;
66}
_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 _stricmp().