#include <corecrt_internal_mbstring.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ _mbsset()
Definition at line 102 of file mbsset.cpp.
106{
110}
#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)
◆ _mbsset_l()
Definition at line 40 of file mbsset.cpp.
45{
47 unsigned char highval, lowval;
49
50
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
62
63 lowval = (
unsigned char)(
val & 0x00ff);
64
65 if(lowval=='\0')
66 {
67 _ASSERTE((
"invalid MBCS pair passed to mbsset",0));
68
69
70
71
72
73
74
75
77 lowval=highval=' ';
78 }
79
80 while (*string) {
81
82 *string++ = highval;
83 if (*string)
84 *string++ = lowval;
85 else
86
87 string[-1] = ' ';
88 }
89
90 }
91
92 else {
93
94
95 while (*string)
97 }
98
100}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
Referenced by _mbsset().