#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 _mbsnbset(), and _mbsnset().
◆ _mbsnbset()
Definition at line 46 of file mbsnset.c.
47{
48 unsigned char *char_src = (
unsigned char *)
src;
49 unsigned short *short_src = (
unsigned short *)
src;
50
52
55 char_src++;
57 }
58 *char_src = 0;
59 }
60 else {
63 short_src++;
65 }
66 *short_src = 0;
67 }
68
70}
GLuint GLuint GLsizei count
size_t _mbclen2(const unsigned int s)
◆ _mbsnset()
Definition at line 17 of file mbsnset.c.
18{
19 unsigned char *char_src = (
unsigned char *)
src;
20 unsigned short *short_src = (
unsigned short *)
src;
21
23
26 char_src++;
28 }
29 *char_src = 0;
30 }
31 else {
34 short_src++;
36 }
37 *short_src = 0;
38 }
39
41}