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

Go to the source code of this file.

Functions

unsigned char *__cdecl _mbsset_l (unsigned char *string, unsigned int val, _locale_t plocinfo)
 
unsigned char *__cdecl _mbsset (unsigned char *string, unsigned int val)
 

Function Documentation

◆ _mbsset()

unsigned char *__cdecl _mbsset ( unsigned char string,
unsigned int  val 
)

Definition at line 102 of file mbsset.cpp.

106{
108 return _mbsset_l(string, val, nullptr);
110}
GLuint GLfloat * val
Definition: glext.h:7180
#define _BEGIN_SECURE_CRT_DEPRECATION_DISABLE
#define _END_SECURE_CRT_DEPRECATION_DISABLE
unsigned char *__cdecl _mbsset_l(unsigned char *string, unsigned int val, _locale_t plocinfo)
Definition: mbsset.cpp:40

◆ _mbsset_l()

unsigned char *__cdecl _mbsset_l ( unsigned char string,
unsigned int  val,
_locale_t  plocinfo 
)

Definition at line 40 of file mbsset.cpp.

45{
46 unsigned char *start = string;
47 unsigned char highval, lowval;
48 _LocaleUpdate _loc_update(plocinfo);
49
50 /* validation section */
51 _VALIDATE_RETURN(string != nullptr, EINVAL, nullptr);
52
54 if (_loc_update.GetLocaleT()->mbcinfo->ismbcodepage == 0)
55 return (unsigned char *)_strset((char *)string, val);
57
58 highval = static_cast<unsigned char>(val >> 8);
59 if (highval != 0)
60 {
61 /* 2-byte value */
62
63 lowval = (unsigned char)(val & 0x00ff);
64
65 if(lowval=='\0')
66 {
67 _ASSERTE(("invalid MBCS pair passed to mbsset",0));
68
69 /* Ideally we would return nullptr here and signal an error
70 condition. But since this function has no other
71 error modes, there would be a good chance of crashing
72 the caller. So instead we fill the string with spaces
73 to ensure that no information leaks through
74 unexpectedly. Anyway, we do set errno to EINVAL.
75 */
76 errno = EINVAL;
77 lowval=highval=' ';
78 }
79
80 while (*string) {
81
82 *string++ = highval;
83 if (*string)
84 *string++ = lowval;
85 else
86 /* don't orphan lead byte */
87 string[-1] = ' ';
88 }
89
90 }
91
92 else {
93 /* single byte value */
94
95 while (*string)
96 *string++ = (unsigned char)val;
97 }
98
99 return(start);
100}
#define EINVAL
Definition: acclib.h:90
#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
_strset
Definition: string.h:424

Referenced by _mbsset().