delorie.com/djgpp/doc/libc/libc_814.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <dirent.h> long telldir(DIR *dir); |
This function returns a value which indicates the position of the
pointer in the given directory. This value is only useful as an
argument to seekdir
(see section seekdir).
The directory pointer.
ANSI/ISO C | No |
POSIX | No |
DIR *dir; long q = telldir(dir); do_something(); seekdir(dir, q); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |