Get the location associated with the directory stream
#include <dirent.h> long int telldir( DIR * dirp );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The telldir() function obtains the current location associated with the directory stream specified by dirp.
Values returned by telldir() are good only for the lifetime of the DIR pointer, dirp, from which they're derived. If you call rewinddir() on the directory stream, or if you close and reopen the directory, an offset previously returned by telldir() becomes invalid.
The current position of the specified directory stream, or -1 if an error occurs (errno is set).
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | No |
Thread | Yes |