예제 #1
0
파일: common.c 프로젝트: AMSMM/NJEMU
int file_getc(void)
{
	if (rom_fd != -1)
		return zgetc(rom_fd);
	return -1;
}
예제 #2
0
파일: lundump.c 프로젝트: gitrider/wxsj2
static int ezgetc (LoadState* S)
{
 int c=zgetc(S->Z);
 if (c==EOZ) unexpectedEOZ(S);
 return c;
}
예제 #3
0
파일: lundump.c 프로젝트: rparet/darkpawns
static int ezgetc (lua_State* L, ZIO* Z)
{
 int c=zgetc(Z);
 if (c==EOZ) unexpectedEOZ(L,Z);
 return c;
}