_eof
Dosya sonu (eof) için sınar.
int _eof(
int fd
);
Parametreler
- fd
Açık olan dosyaya başvuran dosya tanımlayıcısı.
Dönüş Değeri
_eofgeçerli konumu dosya sonu veya 0 ise bu durumda 1 döndürür.–1 Dönüş değeri hata gösterir; Bu durumda geçersiz parametre işleyicisi, açıklandığı şekilde çağrılır Parametre Doğrulama.Yürütülmesine devam etmek için izin verilip verilmediğini errno ayarlamak EBADF, geçersiz bir dosya tanımlayıcısını gösterir.
Notlar
_eof İşlevi, dosyanın sonuna ilişkili olup olmadığını belirler fd ulaşıldı.
Gereksinimler
İşlev |
Gerekli başlık |
İsteğe bağlı bir üstbilgi |
---|---|---|
_eof |
<io.h> |
<errno.h> |
Daha fazla uyumluluk bilgileri için bkz: Uyumluluk giriş.
Örnek
// 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 );
}
Giriş: crt_eof.txt
This file contains some text.
Çıktı
Number of bytes read = 29
.NET Framework Eşdeğeri
Yoktur. Standart c işlevi çağırmak için kullanmak PInvoke. Daha fazla bilgi için bkz: Platform Çağırma örnekleri.