forked from KolibriOS/kolibrios
524cab3cd8
git-svn-id: svn://kolibrios.org@7184 a494cfbc-eb01-0410-851d-a64ba20cac60
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;
|
|
}
|