ref: 23dc13cd28f352c55d1052b45683269290af8682
dir: /lib/c/fseek.c/
#include <stdio.h> #include "syscall.h" #undef fseek extern int _flsbuf(FILE *fp); int fseek(FILE *fp, long off, int whence) { if (fp->flags & _IOERR) return EOF; if ((fp->flags & _IOWRITE) && _flsbuf(fp)) return -1; else if (whence == SEEK_CUR && (fp->flags & _IOREAD)) off -= fp->wp - fp->rp; if (_lseek(fp->fd, off, whence) < 0) { fp->flags |= _IOERR; return EOF; } if (fp->flags & _IORW) fp->flags &= ~(_IOREAD | _IOWRITE); fp->flags &= ~_IOEOF; return 0; }