#include <stdio.h>
int getc(FILE *stream);
Partially implemented
IEEE Std 1003.1-2017
The purpose is to get a byte from a stream. The getc()
function shall be equivalent to fgetc
, except that if it is
implemented as a macro it may evaluate stream more than once, so the argument should never be an expression with
side effects.
Refer to fgetc.
Refer to fgetc.
Untested
None