2000-08-11 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* fseek.c
|
|
|
|
*
|
|
|
|
* Christian Groessler, 07-Aug-2000
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2003-06-12 18:17:25 +00:00
|
|
|
#include <unistd.h>
|
2000-08-11 21:53:56 +00:00
|
|
|
#include "_file.h"
|
|
|
|
|
|
|
|
|
|
|
|
int fseek(FILE* f, long offset, int whence)
|
|
|
|
{
|
|
|
|
long res;
|
|
|
|
|
|
|
|
/* Is the file open? */
|
|
|
|
if ((f->f_flags & _FOPEN) == 0) {
|
|
|
|
_errno = EINVAL; /* File not open */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
res = lseek(f->f_fd, offset, whence);
|
|
|
|
if (res == -1L) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|