![]() |
![]() |
![]() |
![]() |
Write formatted output to a file
#include <wchar.h> #include <stdarg.h> int vwprintf( const wchar_t * format, va_list arg );
libc
The vwprintf() function writes output to the file stdout, under control of the argument format.
The vwprintf() function is equivalent to the wprintf() function, with the variable argument list replaced with arg, which has been initialized by the va_start() macro.
The format string is the same as the one used by printf(). The vwprint() function is the wide-character version of vprintf().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |
errno, fwprintf(), printf(), swprintf(), va_arg(), va_end(), va_start(), vfwprintf(), vswprintf(), wprintf()
![]() |
![]() |
![]() |
![]() |