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

Go to the source code of this file.

Functions

unsigned int __cdecl _mbctohira_l (unsigned int c, _locale_t plocinfo)
 
unsigned int __cdecl _mbctohira (unsigned int c)
 

Function Documentation

◆ _mbctohira()

unsigned int __cdecl _mbctohira ( unsigned int  c)

Definition at line 48 of file mbtohira.cpp.

49{
50 return _mbctohira_l(c, nullptr);
51}
const GLubyte * c
Definition: glext.h:8905
unsigned int __cdecl _mbctohira_l(unsigned int c, _locale_t plocinfo)
Definition: mbtohira.cpp:34

◆ _mbctohira_l()

unsigned int __cdecl _mbctohira_l ( unsigned int  c,
_locale_t  plocinfo 
)

Definition at line 34 of file mbtohira.cpp.

38{
39 if (_ismbckata_l(c, plocinfo) && c <= 0x8393) {
40 if (c < 0x837f)
41 c -= 0xa1;
42 else
43 c -= 0xa2;
44 }
45 return(c);
46}
_Check_return_ _CRTIMP int __cdecl _ismbckata_l(_In_ unsigned int _Ch, _In_opt_ _locale_t _Locale)
_locale_t plocinfo
Definition: ismbbyte.cpp:75

Referenced by _mbctohira().