BSD 4_4_Lite1 release
[unix-history] / usr / src / contrib / mh-6.8.3a / miscellany / libndir / telldir.c
CommitLineData
ad787160 1static char sccsid[] = "@(#)telldir.c 4.4 4/2/83";
d0ecd57b 2
e804469b 3#include <sys/types.h>
ad787160 4#include <dir.h>
d0ecd57b
KM
5
6/*
7 * return a pointer into a directory
8 */
9long
10telldir(dirp)
11 DIR *dirp;
12{
ad787160
C
13 extern long lseek();
14
d0ecd57b
KM
15 return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc);
16}