UNGETC.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. UNGETC(3)                 Minix Programmer's Manual                  UNGETC(3)
  2. NAME
  3.      ungetc - push character back into input stream
  4. SYNOPSIS
  5.      #include <stdio.h>
  6.      int ungetc(int c, FILE *stream)
  7. DESCRIPTION
  8.      Ungetc pushes the character c back on an input  stream.   That  character
  9.      will be returned by the next getc call on that stream.  Ungetc returns c.
  10.      One character of pushback is guaranteed provided something has been  read
  11.      from  the  stream  and the stream is actually buffered.  Attempts to push
  12.      EOF are rejected.
  13.      Fseek(3) erases all memory of pushed back characters.
  14. SEE ALSO
  15.      getc(3), setbuf(3), fseek(3).
  16. DIAGNOSTICS
  17.      Ungetc returns EOF if it can't push a character back.
  18.                                 May 15, 1985                                 1