]> git.ipfire.org Git - thirdparty/man-pages.git/blame_incremental - man3/telldir.3
intro.1, _exit.2, access.2, alarm.2, alloc_hugepages.2, arch_prctl.2, bind.2, chdir...
[thirdparty/man-pages.git] / man3 / telldir.3
... / ...
CommitLineData
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
3.\" %%%LICENSE_START(VERBATIM)
4.\" Permission is granted to make and distribute verbatim copies of this
5.\" manual provided the copyright notice and this permission notice are
6.\" preserved on all copies.
7.\"
8.\" Permission is granted to copy and distribute modified versions of this
9.\" manual under the conditions for verbatim copying, provided that the
10.\" entire resulting derived work is distributed under the terms of a
11.\" permission notice identical to this one.
12.\"
13.\" Since the Linux kernel and libraries are constantly changing, this
14.\" manual page may be incorrect or out-of-date. The author(s) assume no
15.\" responsibility for errors or omissions, or for damages resulting from
16.\" the use of the information contained herein. The author(s) may not
17.\" have taken the same level of care in the production of this manual,
18.\" which is licensed free of charge, as they might when working
19.\" professionally.
20.\"
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
23.\" %%%LICENSE_END
24.\"
25.\" References consulted:
26.\" Linux libc source code
27.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28.\" 386BSD man pages
29.\" Modified Sat Jul 24 17:48:42 1993 by Rik Faith (faith@cs.unc.edu)
30.TH TELLDIR 3 2009-03-11 "" "Linux Programmer's Manual"
31.SH NAME
32telldir \- return current location in directory stream
33.SH SYNOPSIS
34.nf
35.B #include <dirent.h>
36.sp
37.BI "long telldir(DIR *" dirp );
38.fi
39.sp
40.in -4n
41Feature Test Macro Requirements for glibc (see
42.BR feature_test_macros (7)):
43.in
44.sp
45.BR telldir ():
46_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE
47.SH DESCRIPTION
48The
49.BR telldir ()
50function returns the current location associated with
51the directory stream \fIdirp\fP.
52.SH RETURN VALUE
53On success, the
54.BR telldir ()
55function returns the current location
56in the directory stream.
57On error, \-1 is returned, and
58.I errno
59is set appropriately.
60.SH ERRORS
61.TP
62.B EBADF
63Invalid directory stream descriptor \fIdirp\fP.
64.SH CONFORMING TO
654.3BSD, POSIX.1-2001.
66.SH NOTES
67In glibc up to version 2.1.1, the return type of
68.BR telldir ()
69was
70.IR off_t .
71POSIX.1-2001 specifies
72.IR long ,
73and this is the type used since glibc 2.1.2.
74.SH SEE ALSO
75.BR closedir (3),
76.BR opendir (3),
77.BR readdir (3),
78.BR rewinddir (3),
79.BR scandir (3),
80.BR seekdir (3)