minix man page for ungetc

Query: ungetc

OS: minix

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

UNGETC(3)						     Library Functions 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. 7th Edition May 15, 1985 UNGETC(3)
Related Man Pages
ungetc(3) - mojave
ungetwc(3c) - hpux
ungetc(3p) - suse
ungetc(3c) - sunos
ungetc(3) - freebsd
Similar Topics in the Unix Linux Community
little program error.
Inexplicable buffer crash
Replacing space with hyphen in a pattern.
Adding to an array in an external file, and adding elements to it.
Ncurses status bar