stream | 読み込むファイルのファイルポインタ。 The file pointer of the file to read. |
条件 Condition |
戻り値/動作 Return value or behaviour of the function |
stream=NULL | プログラムをエラー終了する。 The program finishes as an error. |
関数fgetcの戻り値がエラー値(EOF)の場合 The return value of function fgetc is an error value (EOF) |
プログラムをエラー終了する。 The program finishes as an error. |
関数fgetcの戻り値(int型)がchar型の範囲(-128〜127)を外れる場合 The return value of function fgetc (int-type) is out of the range of char-type (from -128 to 127) |
プログラムをエラー終了する。 The program finishes as an error. |
上記以外の場合 The other cases |
関数fgetcの戻り値(int型)をchar型にキャストして返す。 Cast the return value of function fgetc (int-type) to char-type and return. |