Go to the source code of this file.
◆ _fgetwc_nolock()
Definition at line 14 of file fgetwc.cpp.
15{
17
18
19
20
21 if (!
stream.is_string_backed() &&
23 {
24 wchar_t wc;
25
26
27 char* const wc_first = reinterpret_cast<char*>(&wc);
28 char* const wc_last = wc_first + sizeof(wc);
29
30 for (char* it = wc_first; it != wc_last; ++it)
31 {
35
36 *it =
static_cast<char>(
c);
37 }
38
39 return wc;
40 }
41
42 if (!
stream.is_string_backed() &&
44 {
46 int ch;
48 wchar_t wch;
49
50
53
54 mbc[0] =
static_cast<char>(ch);
55
57 {
59 {
62 }
63 mbc[1] =
static_cast<char>(ch);
65 }
66
68 {
69
72 }
73
74 return wch;
75 }
76
77
78 if (
stream->_cnt >=
static_cast<int>(
sizeof(
wchar_t)))
79 {
81 return *
reinterpret_cast<wchar_t*&
>(
stream->_ptr)++;
82 }
83 else
84 {
86 }
87}
int __cdecl __acrt_stdio_refill_and_read_wide_nolock(FILE *const stream)
_Check_return_ _CRTIMP int __cdecl _fileno(_In_ FILE *_File)
#define _getc_nolock(_stream)
_Check_return_opt_ _CRTIMP_ALT int __cdecl ungetc(_In_ int _Ch, _Inout_ FILE *_File)
#define _textmode_safe(i)
Referenced by _getwc_nolock(), and fgetwc().
◆ _fgetwchar()
Definition at line 127 of file fgetwc.cpp.
128{
130}
wint_t __cdecl fgetwc(FILE *const stream)
Referenced by getwchar().
◆ _getwc_nolock()
Definition at line 91 of file fgetwc.cpp.
92{
94}
wint_t __cdecl _fgetwc_nolock(FILE *const public_stream)
◆ fgetwc()
Definition at line 98 of file fgetwc.cpp.
99{
101
103
106 {
108 }
110 {
112 }
114
115 return return_value;
116}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
Referenced by _fgetwchar(), and getwc().
◆ getwc()
◆ getwchar()
Definition at line 134 of file fgetwc.cpp.
135{
137}
wint_t __cdecl _fgetwchar()