forked from KolibriOS/kolibrios
524cab3cd8
git-svn-id: svn://kolibrios.org@7184 a494cfbc-eb01-0410-851d-a64ba20cac60
19 lines
273 B
C
19 lines
273 B
C
#include <stdio.h>
|
|
int fsetpos(FILE* file,const fpos_t * pos)
|
|
{
|
|
if(!file || !pos)
|
|
{
|
|
errno = E_INVALIDPTR;
|
|
return errno;
|
|
}
|
|
|
|
if (*pos>=0)
|
|
{
|
|
file->filepos=*pos;
|
|
file->ungetc_buf = EOF;
|
|
return 0;
|
|
}
|
|
else
|
|
return EOF;
|
|
}
|