Everything

fputws


Outputs a wide string to a stream input/output file.

[Format]

#include <stdio.h>

#include <wchar.h>

long fputws(const wchar_t *restrict s, FILE *restrict fp);

[Parameters]

s Pointer to wide string to be output

fp File pointer

[Return values]

Normal: 0

Abnormal: EOF

[Remarks]

The fputws function is the wide-character version of the fputs function.