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

Go to the source code of this file.

Functions

unsigned int __cdecl _mbctokata_l (unsigned int c, _locale_t plocinfo)
 
unsigned int (__cdecl _mbctokata)(unsigned int c)
 

Function Documentation

◆ _mbctokata_l()

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

Definition at line 34 of file mbtokata.cpp.

38{
39 if (_ismbchira_l(c, plocinfo)) {
40 c += 0xa1;
41 if (c >= 0x837f)
42 c++;
43 }
44 return(c);
45}
const GLubyte * c
Definition: glext.h:8905
_Check_return_ _CRTIMP int __cdecl _ismbchira_l(_In_ unsigned int _Ch, _In_opt_ _locale_t _Locale)
_locale_t plocinfo
Definition: ismbbyte.cpp:75

Referenced by int().

◆ int()

unsigned int ( __cdecl  _mbctokata)

Definition at line 47 of file mbtokata.cpp.

50{
51 return _mbctokata_l(c, nullptr);
52}
unsigned int __cdecl _mbctokata_l(unsigned int c, _locale_t plocinfo)
Definition: mbtokata.cpp:34