ftell, ftello - return a file offset in a stream
#include <stdio.h> long ftell(FILE *stream);
off_t ftello(FILE *stream);
The ftell() function obtains the current value of the file-position indicator for the stream pointed to by stream. The ftello() function is identical to ftell() except for the return type.
Upon successful completion, the ftell() and ftello() functions return the current value of the file-position indicator for the stream measured in bytes from the beginning of the file. Otherwise, they return -1 and sets errno to indicate the error.
The ftell() and ftello() functions will fail if:
EBADF
ESPIPE
The ftell() function will fail if:
EOVERFLOW
The ftello() function will fail if:
EOVERFLOW
The ftello() function has a transitional interface for 64-bit file offsets. See lf64(5).
See attributes(5) for descriptions of the following attributes:
|
lseek(2), fopen(3C), fseek(3C), attributes(5), , standards(5), lf64(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |