implemented GTA stream read functions

This commit is contained in:
aap
2019-06-13 11:57:43 +02:00
parent 12697a8553
commit b4afb591a7
7 changed files with 369 additions and 6 deletions

View File

@@ -163,8 +163,8 @@ myfseek(int fd, long offset, int whence)
static int
myfeof(int fd)
{
// return feof(myfiles[fd].file);
return ferror(myfiles[fd].file);
return feof(myfiles[fd].file);
// return ferror(myfiles[fd].file);
}