![]() |
![]() |
![]() |
![]() |
Write formatted output to a file
#include <wchar.h> #include <stdarg.h> int vfwprintf( FILE * fp, const wchar_t * format, va_list arg );
libc
The vfwprintf() function writes output to the file pointed to by fp, under control of the argument format.
The vfwprintf() function is equivalent to the fwprintf() 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 vfwprint() function is the wide-character version of vfprintf().
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |
errno, fwprintf(), printf(), swprintf(), va_arg(), va_end(), va_start(), vwprintf(), vswprintf(), wprintf()
![]() |
![]() |
![]() |
![]() |