home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
program
/
316
/
libsrc
/
feof.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-10-20
|
120 b
|
11 lines
/* feof */
#include "std-guts.h"
int feof (f)
struct file * f;
{
return(!f || !f->open_p || f->eof_p);
}