Home  /  Autodocs  /  dos.library

NAME

FGetC
Read a character from the specified input (buffered) (V36)

SYNOPSIS

char = FGetC(fh)
D0 D1

LONG FGetC(BPTR)

FUNCTION

Reads the next character from the input stream. A -1 is returned when EOF or an error is encountered. This operation is buffered. Use Flush() between buffered and unbuffered I/O on a FileHandle.

INPUTS

fh
FileHandle to use for buffered I/O

RESULT

char
character read (0-255) or -1. -1 indicates failure; call IoErr() to find out why FGetC() failed.

BUGS

In V36, after an EOF was read, EOF would always be returned from FGetC() from then on. Starting in V37, it tries to read from the handler again each time (unless UnGetC(fh,-1) was called).

SEE ALSO

FPutC(), UnGetC(), Flush(), IoErr()