#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ __ascii_wcsicmp()
Definition at line 75 of file wcsicmp.cpp.
79{
80 unsigned short const * lhs_ptr = reinterpret_cast<unsigned short const *>(lhs);
81 unsigned short const * rhs_ptr = reinterpret_cast<unsigned short const *>(rhs);
82
84 int lhs_value;
85 int rhs_value;
86 do
87 {
90 result = lhs_value - rhs_value;
91 }
92 while (
result == 0 && lhs_value != 0);
93
95}
__forceinline int __CRTDECL __ascii_towlower(int const _C)
Referenced by _wcsicmp(), and _wcsicmp_l().
◆ _wcsicmp()
Definition at line 97 of file wcsicmp.cpp.
101{
102 if (!__acrt_locale_changed())
103 {
104
107
109 }
110
112}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl __ascii_wcsicmp(wchar_t const *const lhs, wchar_t const *const rhs)
int __cdecl _wcsicmp_l(wchar_t const *const lhs, wchar_t const *const rhs, _locale_t const plocinfo)
◆ _wcsicmp_l()
Definition at line 39 of file wcsicmp.cpp.
44{
45
48
50
51
52
53 if (_loc_update.GetLocaleT()->locinfo->locale_name[
LC_CTYPE] ==
nullptr)
54 {
56 }
57
58 unsigned short const * lhs_ptr = reinterpret_cast<unsigned short const *>(lhs);
59 unsigned short const * rhs_ptr = reinterpret_cast<unsigned short const *>(rhs);
60
62 int lhs_value;
63 int rhs_value;
64 do
65 {
68 result = lhs_value - rhs_value;
69 }
70 while (
result == 0 && lhs_value != 0);
71
73}
_Check_return_ wint_t _towlower_internal(_In_ unsigned short const c, _In_ _locale_t const locale)
Referenced by _wcsicmp().