fputws

ストリーム (stream) に指定したワイド文字列 (wide string) を書き込みます.

#include <stdio.h>
#include <wchar.h>
int fputws (
    const wchar_t * restrict s,
    FILE * restrict stream
);

fputws 関数は stream が指すストリームに s が指すワイド文字列を書き込みます.(終端ナルワイド文字 (null wide character) の書き込みは行いません.)

引数

戻り値

  • 書き込み成功時: 正の値
  • 書き込み失敗時: EOF