getchar.c 64 字节
Newer Older
A
Anton Perkov 已提交
1 2 3 4 5 6
#include <stdio.h>

int getchar(void)
{
	return fgetc(stdin);
}