date and time created 82/02/21 14:47:03 by mckusick
[unix-history] / usr / src / lib / libc / gen / telldir.c
/* Copyright (c) 1982 Regents of the University of California */
static char sccsid[] = "@(#)telldir.c 1.1 %G%";
#include <sys/types.h>
#include <ndir.h>
/*
* return a pointer into a directory
*/
long
telldir(dirp)
DIR *dirp;
{
return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc);
}