Query: tell
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
tell(3C) Standard C Library Functions tell(3C)NAMEtell - return a file offset for a file descriptorSYNOPSIS#include <unistd.h> off_t tell(int fd);DESCRIPTIONThe tell() function obtains the current value of the file-position indicator for the file descriptor fd.RETURN VALUESUpon 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.ERRORSThe tell() function will fail if: EBADF The file descriptor fd is not an open file descriptor. EOVERFLOW The current file offset cannot be represented correctly in an object of type off_t. ESPIPE The file descriptor fd is associated with a pipe or FIFO.USAGEThe tell() function is equivalent to lseek(fd, 0, SEEK_CUR).ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOlseek(2), attributes(5) SunOS 5.11 28 Jan 1998 tell(3C)
Related Man Pages |
---|
lseek(2) - opensolaris |
tell(3c) - opensolaris |
seek(2) - netbsd |
lseek(2) - osx |
tell(3c) - sunos |
Similar Topics in the Unix Linux Community |
---|
equivalent function for wherey( ) ?? |
Passing a file descriptor |
Hairy Problem! lseek over 4G |
lseek() equivalent |