[Previous] [Contents] [Index] [Next]

wprintf()

Write formatted output to stdout

Synopsis:

#include <wchar.h>

int wprintf( const char* format, 
            ... );

Library:

libc

Description:

The wprintf() function writes output to the stdout stream, under control of the argument format. It is the wide-character version of printf() and uses the same conversions.

Returns:

<0
Failure; an error occurred and errno is set.
x
Success; the number of characters written, excluding the terminating NUL.

Classification:

ANSI

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler No
Thread Yes

See also:

errno, fwprintf(), printf(), swprintf(), vfwprintf(), vwprintf(), vswprintf()


[Previous] [Contents] [Index] [Next]