_eof
ファイルの終わり (EOF) かどうかをテストします。
構文
int _eof(
int fd
);
パラメーター
fd
開いているファイルを参照するファイル記述子。
戻り値
_eof
は、現在の位置がファイルの末尾の場合は 1 を返し、それではない場合は 0 を返します。 戻り値 -1 はエラーを示します。この場合、「 Parameter 検証で説明されているように、無効なパラメーター ハンドラーが呼び出されます。 実行の継続が許可された場合、errno
が、無効なファイル記述子を示す EBADF
に設定されます。
解説
_eof
関数は、fd
に関連付けられたファイルの終わりに達したかどうかを判定します。
既定では、この関数のグローバル状態の適用対象は、アプリケーションになります。 この動作を変更するには、「CRT でのグローバル状態」を参照してください。
要件
機能 | 必須ヘッダー | オプション ヘッダー |
---|---|---|
_eof |
<io.h> | <errno.h> |
互換性の詳細については、「 Compatibility」を参照してください。
例
// crt_eof.c
// This program reads data from a file
// ten bytes at a time until the end of the
// file is reached or an error is encountered.
//
#include <io.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <share.h>
int main( void )
{
int fh, count, total = 0;
char buf[10];
if( _sopen_s( &fh, "crt_eof.txt", _O_RDONLY, _SH_DENYNO, 0 ) )
{
perror( "Open failed");
exit( 1 );
}
// Cycle until end of file reached:
while( !_eof( fh ) )
{
// Attempt to read in 10 bytes:
if( (count = _read( fh, buf, 10 )) == -1 )
{
perror( "Read error" );
break;
}
// Total actual bytes read
total += count;
}
printf( "Number of bytes read = %d\n", total );
_close( fh );
}
入力: crt_eof.txt
This file contains some text.
出力
Number of bytes read = 29