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

Go to the source code of this file.

Functions

int __cdecl _mbsicoll_l (const unsigned char *s1, const unsigned char *s2, _locale_t plocinfo)
 
 int (__cdecl _mbsicoll)(const unsigned char *s1
 

Variables

const unsigned chars2
 

Function Documentation

◆ _mbsicoll_l()

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

Definition at line 39 of file mbsicoll.cpp.

44{
45 int ret;
46 _LocaleUpdate _loc_update(plocinfo);
47
48 /* validation section */
51
52 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
53 return _stricoll_l((const char *)s1, (const char *)s2, plocinfo);
54
55 if ( 0 == (ret = __acrt_CompareStringA(
56 _loc_update.GetLocaleT(),
57 _loc_update.GetLocaleT()->mbcinfo->mblocalename,
59 (LPCSTR)s1,
60 -1,
61 (LPSTR)s2,
62 -1,
63 _loc_update.GetLocaleT()->mbcinfo->mbcodepage )) )
64 {
65 errno = EINVAL;
66 return _NLSCMPERROR;
67 }
68
69 return ret - 2;
70
71}
#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 _stricoll_l(_In_z_ const char *str1, _In_z_ const char *str2, _In_opt_ _locale_t locale)
Definition: stubs.c:498
_locale_t plocinfo
Definition: ismbbyte.cpp:75
const unsigned char * s2
Definition: mbsicoll.cpp:77
struct S1 s1
#define errno
Definition: errno.h:18
#define _NLSCMPERROR
Definition: string.h:19
int ret
#define NORM_IGNORECASE
Definition: winnls.h:178
#define SORT_STRINGSORT
Definition: winnls.h:185
const char * LPCSTR
Definition: xmlstorage.h:183
char * LPSTR
Definition: xmlstorage.h:182

◆ int()

int ( __cdecl  _mbsicoll) const

Variable Documentation

◆ s2

Initial value:
{
return _mbsicoll_l(s1, s2, nullptr)
int __cdecl _mbsicoll_l(const unsigned char *s1, const unsigned char *s2, _locale_t plocinfo)
Definition: mbsicoll.cpp:39

Definition at line 75 of file mbsicoll.cpp.

Referenced by _mbsicoll_l().