Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

getc(3S)

fseek(3S)

setbuf(3S)

UNGETC(3S)  —  Kubota Pacfic Computer Inc. (Standard I/O Library Functions−BSD)

NAME

ungetc − push character back into input stream

SYNOPSIS

#include <stdio.h>

ungetc(c, stream)
FILE ∗stream;

DESCRIPTION

ungetc pushes the character c back on an input stream.  That character is 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(3S) erases all memory of pushed back characters.

SEE ALSO

getc(3S), fseek(3S), setbuf(3S)

DIAGNOSTICS

ungetc returns EOF if it can’t push a character back. 

September 02, 1992

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026