forked from KolibriOS/kolibrios
14 lines
194 B
C
14 lines
194 B
C
|
#include <stdio.h>
|
||
|
int fgetpos(FILE* file,fpos_t* pos)
|
||
|
{
|
||
|
if(!file || !pos)
|
||
|
{
|
||
|
errno = E_INVALIDPTR;
|
||
|
return EOF;
|
||
|
}
|
||
|
|
||
|
*pos=file->filepos;
|
||
|
|
||
|
return 0;
|
||
|
}
|