int _IO_getc(_IO_FILE *__fp);
_IO_getc() reads the next character from __fp and returns it as an unsigned char cast to an int, or EOF on end of file or error.
_IO_getc is not in the source standard; it is only in the binary standard.