1 2 3 4 5 6 7 8 9
#include <io.h> #include <atomic.h> #include <stdio.h> #include <unistd.h> off_t ftello(FILE *stream) { return fseek(stream, 0, SEEK_CUR); }