Everything

fputws


ストリーム入出力用ファイルへワイド文字列を出力します。

[指定形式]

#include <stdio.h>

#include <wchar.h>

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

[引数]

s 出力するワイド文字列へのポインタ

fp ファイルポインタ

[戻り値]

正常:0

異常:EOF

[備考]

fputws関数はfputs関数のワイド文字対応版です。