1
0

fgetc.c 81 B

1234567
  1. #include <stdio.h>
  2. #include "getc.h"
  3. int fgetc(FILE *f)
  4. {
  5. return do_getc(f);
  6. }