Go to the source code of this file.
◆ _putch()
Definition at line 17 of file putch.cpp.
18{
20 {
22 });
23}
int __cdecl _putch_nolock(int const c)
◆ _putch_nolock()
Definition at line 78 of file putch.cpp.
79{
80 __crt_cached_ptd_host
ptd;
82}
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
int __cdecl _putch_nolock_internal(int const c, __crt_cached_ptd_host &ptd)
Referenced by _putch().
◆ _putch_nolock_internal()
Definition at line 25 of file putch.cpp.
26{
30
31
32
34
35
36
37
38
39
40
41
42
43
44
45
46 if (*pch_buf_used == 1)
47 {
49
50 ch_buf[1] =
static_cast<unsigned char>(
c);
51 }
52 else
53 {
54 ch_buf[0] =
static_cast<unsigned char>(
c);
55 }
56
57 if (*pch_buf_used == 0 &&
isleadbyte(ch_buf[0]))
58 {
59
60 *pch_buf_used = 1;
61 }
62 else
63 {
67 {
69 }
70
71
72 *pch_buf_used = 0;
73 }
74
76}
int __cdecl _mbtowc_internal(wchar_t *pwc, const char *s, size_t n, __crt_cached_ptd_host &ptd)
_Check_return_opt_ _CRTIMP wint_t __cdecl _putwch_nolock(wchar_t _WCh)
unsigned char _putch_buffer[MB_LEN_MAX]
unsigned short _putch_buffer_used
size_t const wchar_t const wchar
Referenced by _putch_nolock().