Name
FGetC -- read a single character from a file (V6.0)
Synopsis
int c = FGetC(APTR handle);
Function
This function must read a single character from the specified file handle and return it. In case the end-of-file marker has been reached or an error has occurred, -1 must be returned.

This function must be implemented in a thread-safe manner.

Inputs
handle
file handle returned by FOpen()
Results
c
character read or -1 on error or EOF

Show TOC