#include <corecrt_internal_mbstring.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ _mbsnset()
Definition at line 134 of file mbsnset.cpp.
139{
143}
GLuint GLuint GLsizei count
#define _BEGIN_SECURE_CRT_DEPRECATION_DISABLE
#define _END_SECURE_CRT_DEPRECATION_DISABLE
unsigned char *__cdecl _mbsnset_l(unsigned char *string, unsigned int val, size_t count, _locale_t plocinfo)
◆ _mbsnset_l()
Definition at line 57 of file mbsnset.cpp.
63{
65 unsigned int leadbyte = 0;
66 unsigned char highval, lowval;
68
69
71
72
73
74
75
77 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
80
81 highval =
static_cast<unsigned char>(
val >> 8);
82 if (highval != 0)
83 {
84
85
86
87 lowval = (
unsigned char)(
val & 0x00ff);
88
89 if(lowval=='\0')
90 {
91 _ASSERTE((
"invalid MBCS pair passed to mbsnset",0));
92
93
94
95
96
97
98
99
101 lowval=highval=' ';
102 }
103
104 while (
count-- && *
string) {
106 *string++ = highval;
107
108 if (*string) {
110 *string++ = lowval;
111 }
112 else
113
114 *(string-1) = ' ';
115 }
116 }
117
118 else {
119
120
121 while (
count-- && *
string) {
123 *
string++ = (
unsigned char)
val;
124 }
125 }
126
127
128 if(leadbyte && *string)
129 *string = ' ';
130
132}
#define _ismbbtruelead_l(_lb, _ch, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
Referenced by _mbsnset().