fgetc.c 88 B

1234567
  1. /*
  2. * pANS stdio -- fgetc
  3. */
  4. #include "iolib.h"
  5. int fgetc(FILE *f){
  6. return getc(f);
  7. }