std::vwprintf, std::vfwprintf, std::vswprintf
From cppreference.com
| Defined in header <cwchar>
|
||
| int vwprintf( const wchar_t* format, va_list vlist ); |
(1) | |
| int vfwprintf( std::FILE* stream, const wchar_t* format, va_list vlist ); |
(2) | |
| int vswprintf( wchar_t* buffer, std::size_t buf_size, const wchar_t* format, va_list vlist ); |
(3) | |
Loads the data from locations, defined by vlist,, converts them to wide string equivalents and writes the results to a variety of sinks.
1) Writes the results to stdout.
2) Writes the results to a file stream
stream.3) Writes the results to a wide string
buffer. At most size-1 wide characters are written followed by null wide character.Contents |