[SOLVED] ftell() and fseek()
General and Desktop
4
Posts
3
Posters
3.4k
Views
1
Watching
-
I have a code in C and I'd like to translate it to qt;
@FILE * f;
ftell (f); @
as is reflected in QT?
@fseek (f, key, SEEK_CUR) @
as is reflected in QT? -
Have a look at peek(), seek() and pos() at
http://qt-project.org/doc/qt-5/qfile-members.html . -
thanks sirop and lamSumit