ReactOS 0.4.16-dev-937-g7afcd2a
mbtowc.cpp File Reference
#include <corecrt_internal_mbstring.h>
#include <corecrt_internal_ptd_propagation.h>
#include <locale.h>
#include <stdlib.h>
#include <wchar.h>
Include dependency graph for mbtowc.cpp:

Go to the source code of this file.

Functions

int __cdecl _mbtowc_internal (wchar_t *pwc, const char *s, size_t n, __crt_cached_ptd_host &ptd)
 
int __cdecl _mbtowc_l (wchar_t *pwc, const char *s, size_t n, _locale_t plocinfo)
 
int __cdecl mbtowc (wchar_t *pwc, const char *s, size_t n)
 

Function Documentation

◆ _mbtowc_internal()

int __cdecl _mbtowc_internal ( wchar_t pwc,
const char s,
size_t  n,
__crt_cached_ptd_host &  ptd 
)

Definition at line 45 of file mbtowc.cpp.

51{
53 if (!s || n == 0)
54 {
55 /* indicate do not have state-dependent encodings,
56 handle zero length string */
57 internal_state = {};
58 return 0;
59 }
60
61 if (!*s)
62 {
63 /* handle NULL char */
64 if (pwc)
65 {
66 *pwc = 0;
67 }
68 return 0;
69 }
70
71 const _locale_t locale = ptd.get_locale();
72
73 if (locale->locinfo->_public._locale_lc_codepage == CP_UTF8)
74 {
75 int result = static_cast<int>(__mbrtowc_utf8(pwc, s, n, &internal_state, ptd));
76 if (result < 0)
77 result = -1;
78 return result;
79 }
80
81 _ASSERTE(locale->locinfo->_public._locale_mb_cur_max == 1 ||
82 locale->locinfo->_public._locale_mb_cur_max == 2);
83
84 if (locale->locinfo->locale_name[LC_CTYPE] == nullptr)
85 {
86 if (pwc)
87 {
88 *pwc = (wchar_t) (unsigned char) *s;
89 }
90 return sizeof(char);
91 }
92
93 if (_isleadbyte_fast_internal((unsigned char) *s, locale))
94 {
95 _ASSERTE(locale->locinfo->_public._locale_lc_codepage != CP_UTF8 && L"UTF-8 isn't supported in this _mbtowc_l function yet!!!");
96
97 /* multi-byte char */
98 // If this is a lead byte, then the codepage better be a multibyte codepage
99 _ASSERTE(locale->locinfo->_public._locale_mb_cur_max > 1);
100
101 if ((locale->locinfo->_public._locale_mb_cur_max <= 1) || ((int) n < locale->locinfo->_public._locale_mb_cur_max) ||
102 (__acrt_MultiByteToWideChar(locale->locinfo->_public._locale_lc_codepage,
104 s,
105 locale->locinfo->_public._locale_mb_cur_max,
106 pwc,
107 (pwc) ? 1 : 0) == 0))
108 {
109 /* validate high byte of mbcs char */
110 if ((n < (size_t) locale->locinfo->_public._locale_mb_cur_max) || (!*(s + 1)))
111 {
112 ptd.get_errno().set(EILSEQ);
113 return -1;
114 }
115 }
116 return locale->locinfo->_public._locale_mb_cur_max;
117 }
118 else {
119 /* single byte char */
120 if (__acrt_MultiByteToWideChar(locale->locinfo->_public._locale_lc_codepage,
122 s,
123 1,
124 pwc,
125 (pwc) ? 1 : 0) == 0)
126 {
127 ptd.get_errno().set(EILSEQ);
128 return -1;
129 }
130 return sizeof(char);
131 }
132}
Definition: _locale.h:75
_Check_return_ __forceinline unsigned short __cdecl _isleadbyte_fast_internal(_In_ unsigned char const c, _In_ _locale_t const locale)
#define _ASSERTE(expr)
Definition: crtdbg.h:114
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
Definition: cvt.cpp:355
unsigned char
Definition: typeof.h:29
GLdouble s
Definition: gl.h:2039
GLdouble n
Definition: glext.h:7729
GLuint64EXT * result
Definition: glext.h:11304
#define MB_ERR_INVALID_CHARS
Definition: unicode.h:41
#define LC_CTYPE
Definition: locale.h:19
size_t __cdecl __mbrtowc_utf8(wchar_t *pwc, const char *s, size_t n, mbstate_t *ps, __crt_cached_ptd_host &ptd)
#define L(x)
Definition: ntvdm.h:50
else locinfo
Definition: scanf.h:159
#define EILSEQ
Definition: errno.h:109
#define CP_UTF8
Definition: nls.h:20
#define wchar_t
Definition: wchar.h:102
#define MB_PRECOMPOSED
Definition: winnls.h:283

Referenced by _mbtowc_l(), _putch_nolock_internal(), mbtowc(), __crt_stdio_output::output_processor< Character, OutputAdapter, ProcessorBase >::type_case_c_tchar(), write_double_translated_ansi_nolock(), and __crt_stdio_output::output_processor< Character, OutputAdapter, ProcessorBase >::write_stored_string_tchar().

◆ _mbtowc_l()

int __cdecl _mbtowc_l ( wchar_t pwc,
const char s,
size_t  n,
_locale_t  plocinfo 
)

Definition at line 134 of file mbtowc.cpp.

140{
141 __crt_cached_ptd_host ptd(plocinfo);
142 return _mbtowc_internal(pwc, s, n, ptd);
143}
_locale_t plocinfo
Definition: ismbbyte.cpp:75
int __cdecl _mbtowc_internal(wchar_t *pwc, const char *s, size_t n, __crt_cached_ptd_host &ptd)
Definition: mbtowc.cpp:45

◆ mbtowc()

int __cdecl mbtowc ( wchar_t pwc,
const char s,
size_t  n 
)

Definition at line 145 of file mbtowc.cpp.

150{
151 __crt_cached_ptd_host ptd;
152 return _mbtowc_internal(pwc, s, n, ptd);
153}