tell - return a file offset for a file descriptor
#include <unistd.h> off_t tell(int fd);
The tell() function obtains the current value of the file-position indicator for the file descriptor fd.
Upon successful completion, tell() returns the current value of the file-position indicator for fd measured in bytes from the beginning of the file.
Otherwise, it returns -1 and sets errno to indicate the error.
The tell() function will fail if:
EBADF
EOVERFLOW
ESPIPE
The tell() function is equivalent to lseek(fd, 0, SEEK_CUR).
See attributes(5) for descriptions of the following attributes:
|
lseek(2), attributes(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |