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

Go to the source code of this file.

Functions

unsigned char *__cdecl _mbsnset_l (unsigned char *string, unsigned int val, size_t count, _locale_t plocinfo)
 
unsigned char *__cdecl _mbsnset (unsigned char *string, unsigned int val, size_t count)
 

Function Documentation

◆ _mbsnset()

unsigned char *__cdecl _mbsnset ( unsigned char string,
unsigned int  val,
size_t  count 
)

Definition at line 134 of file mbsnset.cpp.

139{
141 return _mbsnset_l(string, val, count, nullptr);
143}
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLuint GLfloat * val
Definition: glext.h:7180
#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)
Definition: mbsnset.cpp:57

◆ _mbsnset_l()

unsigned char *__cdecl _mbsnset_l ( unsigned char string,
unsigned int  val,
size_t  count,
_locale_t  plocinfo 
)

Definition at line 57 of file mbsnset.cpp.

63{
64 unsigned char *start = string;
65 unsigned int leadbyte = 0;
66 unsigned char highval, lowval;
67 _LocaleUpdate _loc_update(plocinfo);
68
69 /* validation section */
70 _VALIDATE_RETURN(string != nullptr || count == 0, EINVAL, nullptr);
71
72 /*
73 * leadbyte flag indicates if the last byte we overwrote was
74 * a lead byte or not.
75 */
77 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
78 return (unsigned char *)_strnset((char *)string, val, count);
80
81 highval = static_cast<unsigned char>(val >> 8);
82 if (highval != 0)
83 {
84
85 /* double byte value */
86
87 lowval = (unsigned char)(val & 0x00ff);
88
89 if(lowval=='\0')
90 {
91 _ASSERTE(("invalid MBCS pair passed to mbsnset",0));
92
93 /* Ideally we would return nullptr here and signal an error
94 condition. But since this function has no other
95 error modes, there would be a good chance of crashing
96 the caller. So instead we fill the string with spaces
97 to ensure that no information leaks through
98 unexpectedly. Anyway, we do set errno to EINVAL.
99 */
100 errno = EINVAL;
101 lowval=highval=' ';
102 }
103
104 while (count-- && *string) {
105 leadbyte = _ismbbtruelead_l(leadbyte, *string, _loc_update.GetLocaleT());
106 *string++ = highval;
107
108 if (*string) {
109 leadbyte = _ismbbtruelead_l(leadbyte, *string, _loc_update.GetLocaleT());
110 *string++ = lowval;
111 }
112 else
113 /* overwrite orphaned highval byte */
114 *(string-1) = ' ';
115 }
116 }
117
118 else {
119 /* single byte value */
120
121 while (count-- && *string) {
122 leadbyte = _ismbbtruelead_l(leadbyte, *string, _loc_update.GetLocaleT());
123 *string++ = (unsigned char)val;
124 }
125 }
126
127 /* overwrite orphaned trailing byte, if necessary */
128 if(leadbyte && *string)
129 *string = ' ';
130
131 return( start );
132}
#define EINVAL
Definition: acclib.h:90
#define _ismbbtruelead_l(_lb, _ch, p)
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
#define _ASSERTE(expr)
Definition: crtdbg.h:114
unsigned char
Definition: typeof.h:29
GLuint start
Definition: gl.h:1545
_locale_t plocinfo
Definition: ismbbyte.cpp:75
char string[160]
Definition: util.h:11
#define errno
Definition: errno.h:18
_strnset
Definition: string.h:393

Referenced by _mbsnset().