home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / FEOF.C < prev    next >
Text File  |  2000-06-30  |  256b  |  15 lines

  1.  
  2. #define NOCCARGC
  3. #include clib.def
  4. extern int _status[];
  5. /*
  6. ** Test for end-of-file status.
  7. ** Entry: fd = file descriptor
  8. ** Returns non-zero if fd is at eof, else zero.
  9. */
  10. feof(fd) int fd; {
  11.   return (_status[fd] & EOFBIT);
  12.   }
  13.  
  14.  
  15.