ReactOS 0.4.16-dev-927-g467dec4
ismbgrph.cpp File Reference
#include <corecrt_internal_mbstring.h>
#include <locale.h>
Include dependency graph for ismbgrph.cpp:

Go to the source code of this file.

Functions

int __cdecl _ismbcgraph_l (unsigned int const c, _locale_t const locale)
 
int __cdecl _ismbcgraph (unsigned int const c)
 

Function Documentation

◆ _ismbcgraph()

int __cdecl _ismbcgraph ( unsigned int const  c)

Definition at line 51 of file ismbgrph.cpp.

52{
53 return _ismbcgraph_l(c, nullptr);
54}
const GLubyte * c
Definition: glext.h:8905
int __cdecl _ismbcgraph_l(unsigned int const c, _locale_t const locale)
Definition: ismbgrph.cpp:39

◆ _ismbcgraph_l()

int __cdecl _ismbcgraph_l ( unsigned int const  c,
_locale_t const  locale 
)

Definition at line 39 of file ismbgrph.cpp.

40{
41 _LocaleUpdate locale_update(locale);
42
43 if (c <= 0x00FF)
44 {
45 return _ismbbgraph_l(c, locale_update.GetLocaleT());
46 }
47
48 return __dcrt_multibyte_check_type(c, locale_update.GetLocaleT(), _PUNCT | _ALPHA | _DIGIT, true);
49}
Definition: _locale.h:75
#define _ismbbgraph_l(_c, pt)
#define _PUNCT
Definition: ctype.h:70
#define _ALPHA
Definition: ctype.h:76
#define _DIGIT
Definition: ctype.h:67

Referenced by _ismbcgraph().