int getc(FILE *fp);
int putc(int c, FILE * fp);
#define getchar() getc(stdin)
#define putchar() putc((c), stdout)