home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
cvs-1.8.7-src.tgz
/
tar.out
/
fsf
/
cvs
/
contrib
/
dirfns.shar
/
telldir.c
< prev
Wrap
C/C++ Source or Header
|
1996-09-28
|
257b
|
17 lines
static char sccsid[] = "@(#)telldir.c 4.1 2/21/82";
#include <sys/types.h>
#include <dir.h>
/*
* return a pointer into a directory
*/
long
telldir(dirp)
DIR *dirp;
{
long lseek();
return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc);
}