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

Go to the source code of this file.

Functions

static wint_t __cdecl fputwc_binary_nolock (wchar_t const c, __crt_stdio_stream const stream, __crt_cached_ptd_host &ptd) throw ()
 
wint_t __cdecl _fputwc_nolock_internal (wchar_t const c, FILE *const public_stream, __crt_cached_ptd_host &ptd)
 
wint_t __cdecl _fputwc_nolock (wchar_t const c, FILE *const public_stream)
 
wint_t __cdecl _putwc_nolock (wchar_t const c, FILE *const stream)
 
static wint_t __cdecl _fputwc_internal (wchar_t const c, FILE *const stream, __crt_cached_ptd_host &ptd)
 
wint_t __cdecl fputwc (wchar_t const c, FILE *const stream)
 
wint_t __cdecl putwc (wchar_t const c, FILE *const stream)
 
wint_t __cdecl _fputwchar (wchar_t const c)
 
wint_t __cdecl putwchar (wchar_t const c)
 

Function Documentation

◆ _fputwc_internal()

static wint_t __cdecl _fputwc_internal ( wchar_t const  c,
FILE *const  stream,
__crt_cached_ptd_host &  ptd 
)
static

Definition at line 98 of file fputwc.cpp.

99{
101
102 wint_t return_value = WEOF;
103
105 __try
106 {
107 return_value = _fputwc_nolock_internal(c, stream, ptd);
108 }
110 {
112 }
114
115 return return_value;
116}
int wint_t
Definition: _apple.h:38
#define EINVAL
Definition: acclib.h:90
#define _UCRT_VALIDATE_RETURN(ptd, expr, errorcode, retexpr)
_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
wint_t __cdecl _fputwc_nolock_internal(wchar_t const c, FILE *const public_stream, __crt_cached_ptd_host &ptd)
Definition: fputwc.cpp:34
const GLubyte * c
Definition: glext.h:8905
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
#define __try
Definition: pseh2_64.h:188
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190
#define WEOF
Definition: conio.h:185
Definition: parse.h:23

Referenced by fputwc().

◆ _fputwc_nolock()

wint_t __cdecl _fputwc_nolock ( wchar_t const  c,
FILE *const  public_stream 
)

Definition at line 83 of file fputwc.cpp.

84{
85 __crt_cached_ptd_host ptd;
86 return _fputwc_nolock_internal(c, public_stream, ptd);
87}

Referenced by _putwc_nolock().

◆ _fputwc_nolock_internal()

wint_t __cdecl _fputwc_nolock_internal ( wchar_t const  c,
FILE *const  public_stream,
__crt_cached_ptd_host &  ptd 
)

Definition at line 34 of file fputwc.cpp.

35{
36 __crt_stdio_stream const stream(public_stream);
37
38 // If this stream is not file-backed, we can write the character directly:
39 if (stream.is_string_backed())
40 {
42 }
43
44 __crt_lowio_text_mode const text_mode = _textmode_safe(_fileno(stream.public_stream()));
45
46 // If the file is open in a Unicode text mode, we can write the character
47 // directly to the stream:
48 if (text_mode == __crt_lowio_text_mode::utf16le || text_mode == __crt_lowio_text_mode::utf8)
49 {
51 }
52
53 // If the file is open in binary mode, we can write the character directly
54 // to the stream:
55 if ((_osfile_safe(_fileno(stream.public_stream())) & FTEXT) == 0)
56 {
58 }
59
60 // Otherwise, the file is open in ANSI text mode, and we need to translate
61 // the wide character to multibyte before we can write it:
62 char mbc[MB_LEN_MAX];
63
64 int size;
65 if (_wctomb_internal(&size, mbc, MB_LEN_MAX, c, ptd) != 0)
66 {
67 // If conversion failed, errno is set by wctomb_s and we return WEOF:
68 return WEOF;
69 }
70
71 // Write the character, byte-by-byte:
72 for (int i = 0; i < size; ++i)
73 {
74 if (_fputc_nolock_internal(mbc[i], stream.public_stream(), ptd) == EOF)
75 {
76 return WEOF;
77 }
78 }
79
80 return c;
81}
__crt_lowio_text_mode
int __cdecl _fputc_nolock_internal(int const c, FILE *const public_stream, __crt_cached_ptd_host &ptd)
Definition: fputc.cpp:12
static wint_t __cdecl fputwc_binary_nolock(wchar_t const c, __crt_stdio_stream const stream, __crt_cached_ptd_host &ptd)
Definition: fputwc.cpp:14
GLsizeiptr size
Definition: glext.h:5919
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
_Check_return_ _CRTIMP int __cdecl _fileno(_In_ FILE *_File)
#define EOF
Definition: stdio.h:24
#define MB_LEN_MAX
Definition: stdlib.h:19
#define c
Definition: ke_i.h:80
#define _textmode_safe(i)
Definition: internal.h:81
#define _osfile_safe(i)
Definition: internal.h:78
char mbc
int __cdecl _wctomb_internal(int *const return_value, char *const destination, size_t const destination_count, wchar_t const wchar, __crt_cached_ptd_host &ptd)
Definition: wctomb.cpp:30

Referenced by _fputwc_internal(), and _fputwc_nolock().

◆ _fputwchar()

wint_t __cdecl _fputwchar ( wchar_t const  c)

Definition at line 135 of file fputwc.cpp.

136{
137 return fputwc(c, stdout);
138}
wint_t __cdecl fputwc(wchar_t const c, FILE *const stream)
Definition: fputwc.cpp:118
#define stdout
Definition: stdio.h:99

Referenced by putwchar().

◆ _putwc_nolock()

wint_t __cdecl _putwc_nolock ( wchar_t const  c,
FILE *const  stream 
)

Definition at line 89 of file fputwc.cpp.

90{
91 return _fputwc_nolock(c, stream);
92}
wint_t __cdecl _fputwc_nolock(wchar_t const c, FILE *const public_stream)
Definition: fputwc.cpp:83

◆ fputwc()

wint_t __cdecl fputwc ( wchar_t const  c,
FILE *const  stream 
)

Definition at line 118 of file fputwc.cpp.

119{
120 __crt_cached_ptd_host ptd;
121 return _fputwc_internal(c, stream, ptd);
122}
static wint_t __cdecl _fputwc_internal(wchar_t const c, FILE *const stream, __crt_cached_ptd_host &ptd)
Definition: fputwc.cpp:98

Referenced by _fputwchar(), and putwc().

◆ fputwc_binary_nolock()

static wint_t __cdecl fputwc_binary_nolock ( wchar_t const  c,
__crt_stdio_stream const  stream,
__crt_cached_ptd_host &  ptd 
)
throw (
)
static

Definition at line 14 of file fputwc.cpp.

15{
16 stream->_cnt -= sizeof(wchar_t);
17
18 // If there is no room for the character in the buffer, flush the buffer and
19 // write the character:
20 if (stream->_cnt < 0)
21 {
22 return static_cast<wint_t>(__acrt_stdio_flush_and_write_wide_nolock(c, stream.public_stream(), ptd));
23 }
24
25 // Otherwise, there is sufficient room, so we can write directly to the buffer:
26 wchar_t*& wide_stream_ptr = reinterpret_cast<wchar_t*&>(stream->_ptr);
27 *wide_stream_ptr++ = c;
28
29 return c;
30}
int __cdecl __acrt_stdio_flush_and_write_wide_nolock(int const c, FILE *const stream, __crt_cached_ptd_host &ptd)
Definition: _flsbuf.cpp:206
#define wchar_t
Definition: wchar.h:102

Referenced by _fputwc_nolock_internal().

◆ putwc()

wint_t __cdecl putwc ( wchar_t const  c,
FILE *const  stream 
)

Definition at line 127 of file fputwc.cpp.

128{
129 return fputwc(c, stream);
130}

◆ putwchar()

wint_t __cdecl putwchar ( wchar_t const  c)

Definition at line 143 of file fputwc.cpp.

144{
145 return _fputwchar(c);
146}
wint_t __cdecl _fputwchar(wchar_t const c)
Definition: fputwc.cpp:135