Other Alias
fseekoSINOPSIS
#include <stdio.h>
int fseeko(FILE *stream, off_t offset, int whence);
off_t ftello(FILE *stream);
DESCRIPCIÓN
Las funciones fseeko() y ftello() son idénticas a fseek() y ftell() (véase fseek(3)), respectivamente, salvo que el argumento offset de fseeko() y el valor devuelto por ftello() son de tipo off_t en lugar de long.En muchas arquitecturas tanto off_t como long son tipos de 32 bits, aunque si se compila con
-
#define _FILE_OFFSET_BITS 64