From Cppreference
|
|
|
|
|
int fputws( const wchar_t *str, FILE *stream );
|
|
|
|
|
Writes given null-terminated wide character string to the given output stream.
[edit] Parameters
str
|
-
|
null-terminated wide character string to be written
|
stream
|
-
|
output stream
|
[edit] Return value
non-negative integer on success, WEOF on failure
[edit] See also
|
|
writes a character string to a file stream (function)
|
|
|
prints formatted wide character output to stdout, a file stream or a buffer (function)
|
|
|
writes a wide character string to a file stream (function)
|
|
|
gets a wide character string from a file stream (function)
|