Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
int fgetpos(FILE* file,fpos_t* pos)
3
{
6433 siemargl 4
    if(!file || !pos)
5
    {
6
        errno = E_INVALIDPTR;
7
        return EOF;
8
    }
9
 
647 andrew_pro 10
  *pos=file->filepos;
11
  return 0;
6433 siemargl 12
}