FERROR.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. FERROR(3)                 Minix Programmer's Manual                  FERROR(3)
  2. NAME
  3.      ferror, feof, clearerr, fileno - stream status inquiries
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int feof(FILE *stream)
  7.      int ferror(FILE *stream)
  8.      int clearerr(FILE *stream)
  9.      int fileno(FILE *stream)
  10. DESCRIPTION
  11.      Feof returns non-zero when end of file is read on the named input stream,
  12.      otherwise  zero.   Unless cleared by clearerr, the end-of-file indication
  13.      lasts until the stream is closed.
  14.      Ferror returns non-zero when an error has occurred reading or writing the
  15.      named  stream,  otherwise  zero.   Unless  cleared by clearerr, the error
  16.      indication lasts until the stream is closed.
  17.      Clearerr resets the error and end-of-file indicators on the named stream.
  18.      Fileno returns the integer file descriptor associated  with  the  stream,
  19.      see open(2).
  20.      Currently all of these functions are implemented as macros;  they  cannot
  21.      be redeclared.
  22. SEE ALSO
  23.      fopen(3), open(2).
  24. 4BSD                              May 14, 1986                               1