Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

fseeko, fseeko64; ftello, ftello64 Visual C equivalents

Could someone help me by telling what is the Visual C equivalent of fseeko, fseeko64; ftello, ftello64?

Thanks :)

like image 610
Shambavi Avatar asked Oct 28 '25 20:10

Shambavi


2 Answers

There are no functions that returns/use off_t, if you need a 64bit position you can use: _fseeki64 _ftelli64

like image 67
mauropellizzer Avatar answered Oct 30 '25 11:10

mauropellizzer


Look here fseek, _fseeki64, ftell, and _ftelli64

like image 28
ScarCode Avatar answered Oct 30 '25 12:10

ScarCode