Query: ungetc
OS: v7
Section: 3s
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
UNGETC(3S) UNGETC(3S)NAMEungetc - push character back into input streamSYNOPSIS#include <stdio.h> ungetc(c, stream) FILE *stream;DESCRIPTIONUngetc 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 ALSOgetc(3), setbuf(3), fseek(3)DIAGNOSTICSUngetc returns EOF if it can't push a character back. UNGETC(3S)
Related Man Pages |
---|
ungetc(3p) - centos |
ungetc(3) - osx |
fgetc(2) - plan9 |
ungetc(3p) - suse |
ungetwc_unl(3c) - hpux |
Similar Topics in the Unix Linux Community |
---|
reading a single character in C |
fopen and open |
Inexplicable buffer crash |
Adding to an array in an external file, and adding elements to it. |