Go to the source code of this file.
◆ _ungetc_nolock()
Definition at line 38 of file ungetc.cpp.
39{
41
43
44
47
48
49
52
53 if (!is_in_read_only_mode && !is_in_rw_write_mode)
55
56
57 if (
stream->_base ==
nullptr)
59
60
61
63 {
64
65
68
70 }
71
72
73 if (
stream.is_string_backed())
74 {
76 if (*
stream->_ptr !=
static_cast<char>(
c))
77 {
80 }
81 }
82 else
83 {
85 *
stream->_ptr =
static_cast<char>(
c);
86 }
87
91
93}
void __cdecl __acrt_stdio_allocate_buffer_nolock(FILE *const public_stream)
#define _VALIDATE_STREAM_ANSI_RETURN(stream, errorcode, retexpr)
Referenced by ungetc().
◆ ungetc()
Definition at line 16 of file ungetc.cpp.
17{
19
20 int return_value =
EOF;
21
24 {
26 }
28 {
30 }
32
33 return return_value;
34}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
_CRTIMP void __cdecl _unlock_file(_Inout_ FILE *_File)
_CRTIMP void __cdecl _lock_file(_Inout_ FILE *_File)
int __cdecl _ungetc_nolock(int const c, FILE *public_stream)