fputws

From cppreference.com
< c‎ | io
 
 
File input/output


Functions
File access
Direct input/output
Unformatted input/output
(C95)(C95)
(C95)
(C95)(C95)
fputws
(C95)
(C95)
Formatted input
Formatted output
File positioning
Error handling
Operations on files
 
Defined in header <wchar.h>
int fputws( const wchar_t *str, FILE *stream );
(until C99)
(since C95)
int fputws( const wchar_t * restrict str, FILE * restrict stream );
(since C99)

Writes every character from the null-terminated wide string str to the output stream stream, as if by repeatedly executing fputwc.

The terminating null wide character from str is not written.

Parameters

str - null-terminated wide string to be written
stream - output stream

Return value

On success, returns a non-negative value

On failure, returns EOF and sets the error indicator (see ferror) on stream.