Updated: October 28, 2024 |
Write formatted wide-character output to a file (varargs)
#include <wchar.h> #include <stdarg.h> int vfwprintf( FILE * fp, const wchar_t * format, va_list arg );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The vfwprintf() function writes output to the file pointed to by fp, under control of the argument format.
The vfwprint() function is the wide-character version of vfprintf(), and is a varargs version of fwprintf().
The number of wide characters written, excluding the terminating NUL, or a negative number if an error occurred (errno is set).
Refer to the Errors section of the printf() function for a list of possible errors.
Safety: | |
---|---|
Cancellation point | Yes |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |