ReactOS 0.4.16-dev-2110-ge3521eb
mbsnextc.c File Reference
#include <precomp.h>
#include <mbstring.h>
Include dependency graph for mbsnextc.c:

Go to the source code of this file.

Functions

unsigned int _mbsnextc (const unsigned char *str)
 

Function Documentation

◆ _mbsnextc()

unsigned int _mbsnextc ( const unsigned char str)

Definition at line 18 of file mbsnextc.c.

19{
20 if(_ismbblead(*str))
21 return *str << 8 | str[1];
22 return *str;
23}
_ACRTIMP int __cdecl _ismbblead(unsigned int)
Definition: mbcs.c:2077
const WCHAR * str

Referenced by _mbscspn(), _mbsrchr(), _mbsspn(), _mbsspnp(), _mbsupr(), and test_mbcp().