47{
48 unsigned short c1, c2;
51 unsigned char szResult[4];
52
53
56
57 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
58 return _stricmp_l((
const char *)
s1, (
const char *)
s2, _loc_update.GetLocaleT());
59
60 for (;;)
61 {
64 {
66 c1 = 0;
67 else
68 {
70 _loc_update.GetLocaleT(),
71 _loc_update.GetLocaleT()->mbcinfo->mblocalename,
74 2,
76 2,
77 _loc_update.GetLocaleT()->mbcinfo->mbcodepage,
79
81 c1 = szResult[0];
83 c1 = (szResult[0] << 8) + szResult[1];
84 else
85 {
88 }
90 }
91 }
92 else
94
97 {
99 c2 = 0;
100 else
101 {
103 _loc_update.GetLocaleT(),
104 _loc_update.GetLocaleT()->mbcinfo->mblocalename,
107 2,
109 2,
110 _loc_update.GetLocaleT()->mbcinfo->mbcodepage,
112
114 c2 = szResult[0];
116 c2 = (szResult[0] << 8) + szResult[1];
117 else
118 {
121 }
123 }
124 }
125 else
127
128 if (c1 != c2)
129 return( (c1 > c2) ? 1 : -1 );
130
131 if (c1 == 0)
132 return(0);
133 }
134}
int __cdecl __acrt_LCMapStringA(_locale_t const plocinfo, PCWSTR const LocaleName, DWORD const dwMapFlags, PCCH const lpSrcStr, int const cchSrc, PCH const lpDestStr, int const cchDest, int const code_page, BOOL const bError)
#define _mbbtolower_l(_c, p)
#define _ismbblead_l(_c, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_Check_return_ _CRTIMP int __cdecl _stricmp_l(_In_z_ const char *str1, _In_z_ const char *str2, _In_opt_ _locale_t locale)