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

Go to the source code of this file.

Functions

int __cdecl _mbscoll_l (const unsigned char *s1, const unsigned char *s2, _locale_t plocinfo)
 
 int (__cdecl _mbscoll)(const unsigned char *s1
 

Variables

const unsigned chars2
 

Function Documentation

◆ _mbscoll_l()

int __cdecl _mbscoll_l ( const unsigned char s1,
const unsigned char s2,
_locale_t  plocinfo 
)

Definition at line 40 of file mbscoll.cpp.

45{
46 int ret;
47 _LocaleUpdate _loc_update(plocinfo);
48
49 /* validation section */
52
53 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
54 return _strcoll_l((const char *)s1, (const char *)s2, plocinfo);
55
56 if (0 == (ret = __acrt_CompareStringA(
57 _loc_update.GetLocaleT(),
58 _loc_update.GetLocaleT()->mbcinfo->mblocalename,
60 (LPCSTR)s1,
61 -1,
62 (LPSTR)s2,
63 -1,
64 _loc_update.GetLocaleT()->mbcinfo->mbcodepage )))
65 {
66 errno = EINVAL;
67
68 return _NLSCMPERROR;
69 }
70
71 return ret - 2;
72
73}
#define EINVAL
Definition: acclib.h:90
int __cdecl __acrt_CompareStringA(_In_opt_ _locale_t _Plocinfo, _In_ LPCWSTR _LocaleName, _In_ DWORD _DwCmpFlags, _In_CRT_NLS_string_(_CchCount1) PCCH _LpString1, _In_ int _CchCount1, _In_CRT_NLS_string_(_CchCount2) PCCH _LpString2, _In_ int _CchCount2, _In_ int _CodePage)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_Check_return_ _CRTIMP int __cdecl _strcoll_l(_In_z_ const char *str1, _In_z_ const char *str2, _In_opt_ _locale_t locale)
Definition: stubs.c:472
_locale_t plocinfo
Definition: ismbbyte.cpp:75
const unsigned char * s2
Definition: mbscoll.cpp:79
struct S1 s1
#define errno
Definition: errno.h:18
#define _NLSCMPERROR
Definition: string.h:19
int ret
#define SORT_STRINGSORT
Definition: winnls.h:185
const char * LPCSTR
Definition: xmlstorage.h:183
char * LPSTR
Definition: xmlstorage.h:182

◆ int()

int ( __cdecl  _mbscoll) const

Variable Documentation

◆ s2

Initial value:
{
return _mbscoll_l(s1, s2, nullptr)
int __cdecl _mbscoll_l(const unsigned char *s1, const unsigned char *s2, _locale_t plocinfo)
Definition: mbscoll.cpp:40

Definition at line 77 of file mbscoll.cpp.

Referenced by _mbscoll_l().