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

Go to the source code of this file.

Functions

int __cdecl _ismbclower_l (unsigned int const c, _locale_t const locale)
 
int __cdecl _ismbclower (unsigned int const c)
 

Function Documentation

◆ _ismbclower()

int __cdecl _ismbclower ( unsigned int const  c)

Definition at line 51 of file ismblwr.cpp.

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

◆ _ismbclower_l()

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

Definition at line 39 of file ismblwr.cpp.

40{
41 _LocaleUpdate locale_update(locale);
42
43 if (c <= 0x00FF)
44 {
45 return _mbbislower_l(c, locale_update.GetLocaleT());
46 }
47
48 return __dcrt_multibyte_check_type(c, locale_update.GetLocaleT(), _LOWER, true);
49}
Definition: _locale.h:75
#define _mbbislower_l(_c, p)
#define _LOWER
Definition: ctype.h:66

Referenced by _ismbclower().