Everything

fgetws


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

[指定形式]

#include <stdio.h>

#include <wchar.h>

wchar_t *fgetws(wchar_t *restrict s, long n, FILE *fp);

[引数]

s ワイド文字列を入力する記憶域へのポインタ

n ワイド文字列を入力する記憶域のバイト数

fp ファイルポインタ

[戻り値]

正常:ファイルの終了の時:NULL

ファイルの終了でない時:s

異常:NULL

[備考]

fgetws関数はfgets関数をワイド文字列が入力できるように対応した関数です。