#include <mbstring.h>
Go to the source code of this file.
◆ _mbclen2()
Definition at line 23 of file mbclen.c.
24{
26}
_Check_return_ _CRTIMP int __cdecl _ismbbtrail(_In_ unsigned int _C)
int __cdecl _ismbblead(unsigned int)
Referenced by _mbsset().
◆ _mbsset()
Definition at line 18 of file mbsset.c.
19{
20 unsigned char *char_src =
src;
21 unsigned short *short_src = (
unsigned short *)
src;
22
24
25 while(*char_src != 0) {
27 char_src++;
28 }
29 *char_src = 0;
30 }
31 else {
32 while(*short_src != 0) {
34 short_src++;
35 }
36 *short_src = 0;
37 }
38
40}
size_t _mbclen2(const unsigned int s)