ungetc.3
来自「Unix操作系统minix 2.0源码」· 3 代码 · 共 60 行
3
60 行
UNGETC(3) Minix Programmer's Manual UNGETC(3)
NAME
ungetc - push character back into input stream
SYNOPSIS
#include <stdio.h>
int ungetc(int c, FILE *stream)
DESCRIPTION
Ungetc pushes the character c back on an input stream. That character
will be returned by the next getc call on that stream. Ungetc returns c.
One character of pushback is guaranteed provided something has been read
from the stream and the stream is actually buffered. Attempts to push
EOF are rejected.
Fseek(3) erases all memory of pushed back characters.
SEE ALSO
getc(3), setbuf(3), fseek(3).
DIAGNOSTICS
Ungetc returns EOF if it can't push a character back.
May 15, 1985 1
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?