2007-10-15 11:42:17 +02:00
|
|
|
#include <stdio.h>
|
2006-09-07 16:14:53 +02:00
|
|
|
int fgetpos(FILE* file,fpos_t* pos)
|
|
|
|
{
|
2016-05-19 14:15:22 +02:00
|
|
|
if(!file || !pos)
|
|
|
|
{
|
|
|
|
errno = E_INVALIDPTR;
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
|
2006-09-07 16:14:53 +02:00
|
|
|
*pos=file->filepos;
|
|
|
|
return 0;
|
2016-05-19 14:15:22 +02:00
|
|
|
}
|