ReactOS 0.4.15-dev-7918-g2a2556c
mbstowcs_s.c File Reference
#include <precomp.h>
#include <mbstring.h>
Include dependency graph for mbstowcs_s.c:

Go to the source code of this file.

Functions

 _Success_ (return!=EINVAL)
 

Function Documentation

◆ _Success_()

_Success_ ( return!  = EINVAL)

Definition at line 12 of file mbstowcs_s.c.

23{
24 size_t cchMax, cwcWritten;
25 errno_t retval = 0;
26
27 /* Make sure, either we have a target buffer > 0 bytes, or no buffer */
28 if (!MSVCRT_CHECK_PMT( ((sizeInWords != 0) && (pwcstr != 0)) ||
29 ((sizeInWords == 0) && (pwcstr == 0)) ))
30 {
32 return EINVAL;
33 }
34
35 /* Check if we have a return value pointer */
36 if (pcchConverted)
37 {
38 /* Default to 0 bytes written */
39 *pcchConverted = 0;
40 }
41
42 if (!MSVCRT_CHECK_PMT((count == 0) || (pmbstr != 0)))
43 {
45 return EINVAL;
46 }
47
48 /* Check if there is anything to do */
49 if ((pwcstr == 0) && (pmbstr == 0))
50 {
52 return EINVAL;
53 }
54
55 /* Check if we have a multibyte string */
56 if (pmbstr)
57 {
58 /* Check if we also have a wchar buffer */
59 if (pwcstr)
60 {
61 /* Calculate the maximum the we can write */
62 cchMax = (count < sizeInWords) ? count + 1 : sizeInWords;
63
64 /* Now do the conversion */
65 cwcWritten = mbstowcs(pwcstr, pmbstr, cchMax);
66
67 /* Check if the buffer was not zero terminated */
68 if (cwcWritten == cchMax)
69 {
70 /* Check if we reached the max size of the dest buffer */
71 if (cwcWritten == sizeInWords)
72 {
73 /* Does the caller allow this? */
74 if (count != _TRUNCATE)
75 {
76 /* Not allowed, truncate to 0 length */
77 pwcstr[0] = L'\0';
78
79 /* Return error */
81 return ERANGE;
82 }
83
84 /* Inform the caller about truncation */
85 retval = STRUNCATE;
86 }
87
88 /* zero teminate the buffer */
89 pwcstr[cwcWritten - 1] = L'\0';
90 }
91 else
92 {
93 /* The buffer is zero terminated, count the terminating char */
94 cwcWritten++;
95 }
96 }
97 else
98 {
99 /* Get the length of the string, plus 0 terminator */
100 cwcWritten = _mbsnlen((const unsigned char *)pmbstr, count) + 1;
101 }
102 }
103 else
104 {
105 cwcWritten = count + 1;
106 }
107
108 /* Check if we have a return value pointer */
109 if (pcchConverted)
110 {
111 /* Default to 0 bytes written */
112 *pcchConverted = cwcWritten;
113 }
114
115 return retval;
116}
UINT cchMax
#define EINVAL
Definition: acclib.h:90
#define ERANGE
Definition: acclib.h:92
#define _TRUNCATE
Definition: crtdefs.h:262
int errno_t
Definition: crtdefs.h:374
GLuint GLuint GLsizei count
Definition: gl.h:1545
_Check_return_ _CRTIMP size_t __cdecl _mbsnlen(_In_z_ const unsigned char *_Str, _In_ size_t _MaxCount)
Definition: _mbsnlen.c:15
size_t __cdecl mbstowcs(_Out_writes_opt_z_(_MaxCount) wchar_t *_Dest, _In_z_ const char *_Source, _In_ size_t _MaxCount)
#define MSVCRT_CHECK_PMT(x)
Definition: mbstowcs_s.c:26
#define L(x)
Definition: ntvdm.h:50
#define STRUNCATE
Definition: errno.h:110
errno_t __cdecl _set_errno(_In_ int _Value)