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

Go to the source code of this file.

Functions

size_t __cdecl _mbclen_l (unsigned char const *c, _locale_t locale)
 
size_t __cdecl _mbclen (unsigned char const *c)
 

Function Documentation

◆ _mbclen()

size_t __cdecl _mbclen ( unsigned char const c)

Definition at line 43 of file mbclen.cpp.

44{
45 /* Don't return two if we have leadbyte, EOS.
46 Don't assert here; too low level
47 */
48 return (_ismbblead(*c) && c[1]!='\0') ? 2 : 1;
49}
const GLubyte * c
Definition: glext.h:8905
int __cdecl _ismbblead(unsigned int)
Definition: ismblead.c:20

◆ _mbclen_l()

size_t __cdecl _mbclen_l ( unsigned char const c,
_locale_t  locale 
)

Definition at line 35 of file mbclen.cpp.

36{
37 /* Don't return two if we have leadbyte, EOS.
38 Don't assert here; too low level
39 */
40 return ((_ismbblead_l)(*c, locale) && c[1] != '\0') ? 2 : 1;
41}
Definition: _locale.h:75
#define _ismbblead_l(_c, p)