xref: /illumos-gate/usr/src/man/man3c/tell.3c (revision 8c0b080c8ed055a259d8cd26b9f005211c6a9753)
te
Copyright (c) 1997, Sun Microsystems, Inc. All Rights Reserved
The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
TELL 3C "Jan 28, 1998"
NAME
tell - return a file offset for a file descriptor
SYNOPSIS

#include <unistd.h>

off_t tell(int fd);
DESCRIPTION

The tell() function obtains the current value of the file-position indicator for the file descriptor fd.

RETURN VALUES

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.

ERRORS

The 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.

USAGE

The tell() function is equivalent to lseek(fd, 0, SEEK_CUR).

ATTRIBUTES

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE ATTRIBUTE VALUE
MT-Level MT-Safe
SEE ALSO

lseek (2), attributes (7)