int file_getc(void) { if (rom_fd != -1) return zgetc(rom_fd); return -1; }
static int ezgetc (LoadState* S) { int c=zgetc(S->Z); if (c==EOZ) unexpectedEOZ(S); return c; }
static int ezgetc (lua_State* L, ZIO* Z) { int c=zgetc(Z); if (c==EOZ) unexpectedEOZ(L,Z); return c; }