std::vwprintf, std::vfwprintf, std::vswprintf

From cppreference.com
< cpp‎ | io‎ | c
 
 
 
C-style I/O
Functions
File access
Direct input/output
Unformatted input/output
Formatted input/output
(C++11)(C++11)(C++11)
vwprintfvfwprintfvswprintf
File positioning
Error handling
Operations on files
 
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( const wchar_t* buffer, std::size_t 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.

Contents

[edit] Parameters

[edit] Return value

Number of wide characters written if successful or negative value if an error occurred.

[edit] Example

[edit] See also

prints formatted wide character output to stdout, a file stream or a buffer
(function)
C documentation for vwprintf, vfwprintf, vswprintf