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

操作系统开发

开发平台:

WINDOWS

  1. FCLOSE(3)                 Minix Programmer's Manual                  FCLOSE(3)
  2. NAME
  3.      fclose, fflush - close or flush a stream
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int fclose(FILE *stream)
  7.      int fflush(FILE *stream)
  8. DESCRIPTION
  9.      Fclose causes any buffers for the named stream to  be  emptied,  and  the
  10.      file to be closed.  Buffers allocated by the standard input/output system
  11.      are freed.
  12.      Fclose is performed automatically upon calling exit(3).
  13.      Fflush causes any buffered data for the named output stream to be written
  14.      to that file.  The stream remains open.
  15. SEE ALSO
  16.      close(2), fopen(3), setbuf(3).
  17. DIAGNOSTICS
  18.      These routines return EOF if stream is  not  associated  with  an  output
  19.      file, or if buffered data cannot be transferred to that file.
  20.                                 May 15, 1985                                 1