ReactOS 0.4.16-dev-937-g7afcd2a
mbscat_s_l.cpp File Reference
Include dependency graph for mbscat_s_l.cpp:

Go to the source code of this file.

Functions

errno_t __cdecl _mbscat_s_l (unsigned char *_Dst, size_t _SizeInBytes, const unsigned char *_Src, _LOCALE_ARG_DECL)
 

Function Documentation

◆ _mbscat_s_l()

errno_t __cdecl _mbscat_s_l ( unsigned char _Dst,
size_t  _SizeInBytes,
const unsigned char _Src,
_LOCALE_ARG_DECL   
)

Definition at line 19 of file mbscat_s_l.cpp.

20{
21 unsigned char *p;
22 size_t available;
23 BOOL fFoundInvalidMBC, fIsLeadPrefix;
24
25 /* validation section */
28
31 {
32 return strcat_s((char *)_Dst, _SizeInBytes, (const char *)_Src);
33 }
34
35 fFoundInvalidMBC = FALSE;
36 p = _Dst;
38 while (available > 0 && *p != 0)
39 {
40 p++;
41 available--;
42 }
43
44 /*
45 * Ran out of room while looking for end of dst string.
46 * p points 1 past end of buffer. We can't look past
47 * end of buffer so can't tell if dst ended with an
48 * invalid mbc.
49 */
50
51 if (available == 0)
52 {
55 }
56
57 /*
58 * Otherwise we have space available, p points at null that lies
59 * within _SizeInBytes, so available > 0. Check if dst ended with
60 * an invalid MBC (lead+null), if so then clear that lead byte,
61 * move the pointer back one and increase available by one.
62 */
63
64 _ISMBBLEADPREFIX(fIsLeadPrefix, _Dst, p-1);
65 if (fIsLeadPrefix)
66 {
67 fFoundInvalidMBC = TRUE;
68 p--;
69 *p = 0;
70 available++;
71 }
72
73 /* Append dst to src. */
74
75 while ((*p++ = *_Src++) != 0 && --available > 0)
76 {
77 }
78
79 /*
80 * We've run out of room in the destination before finding null in the src.
81 * It could be that the src was terminated with an invalid mbc (lead+null).
82 * In that case its ok to clear the copied lead byte and return mbcs_error.
83 */
84
85 if (available == 0)
86 {
87 if (*_Src == 0)
88 {
89 _ISMBBLEADPREFIX(fIsLeadPrefix, _Dst, p-1);
90 if (fIsLeadPrefix)
91 {
92 /* the source string ended with a lead byte: we remove it */
93 p[-1] = 0;
95 }
96 }
99 }
100
101 /*
102 * If the src string ended with an invalid mbc (lead+null) then clear the
103 * lead byte.
104 */
105
106 _ISMBBLEADPREFIX(fIsLeadPrefix, _Dst, p-2);
107 if (fIsLeadPrefix)
108 {
109 p[-2] = 0;
110 available++;
111 fFoundInvalidMBC = TRUE;
112 }
113
115
116 if (fFoundInvalidMBC)
117 {
119 }
120
122}
#define _RETURN_DEST_NOT_NULL_TERMINATED(_String, _Size)
#define _FILL_STRING
#define _ISMBBLEADPREFIX(_Result, _StringStart, _BytePtr)
#define _RETURN_BUFFER_TOO_SMALL(_String, _Size)
#define _LOCALE_SHORTCUT_TEST
#define _RESET_STRING(_String, _Size)
#define _RETURN_NO_ERROR
#define _VALIDATE_POINTER_RESET_STRING(_Pointer, _String, _Size)
#define _LOCALE_UPDATE
#define _RETURN_MBCS_ERROR
#define _VALIDATE_STRING(_String, _Size)
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
static WCHAR available[MAX_STRING_RESOURCE_LEN]
Definition: object.c:2336
unsigned int BOOL
Definition: ntddk_ex.h:94
GLfloat GLfloat p
Definition: glext.h:8902
_In_ size_t _SizeInBytes
Definition: time.h:146
int CDECL strcat_s(char *dst, size_t elem, const char *src)
Definition: string.c:40