Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

fseeki64() return value

53 views
Skip to first unread message

blake.z...@gmail.com

unread,
Jun 2, 2009, 12:58:15 PM6/2/09
to
It looks like the lcc-win32 implementation of fseeki64() uses:
long long fseeki64(FILE *f,long long offset,int origin);

The mingw32 implementation of fseeko64() uses:
int fseeko64(FILE *f, long long offset, int origin);

And, of course, fseek() uses:
int fseek ( FILE *f, long int offset, int origin );

Both fseek() and fseeko64() will return a non-zero only for requests
that cannot be satisfied, but what is fseeki64() returning and why the
discrepancy?

0 new messages