delorie.com/djgpp/doc/libc/libc_664.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <dirent.h> void rewinddir(DIR *dir); |
This function resets the position of the dir so that the next call
to readdir
(see section readdir) starts at the beginning again.
None.
ANSI/ISO C | No |
POSIX | 1003.2-1992; 1003.1-2001 |
DIR *d = opendir("."); rewinddir(d); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |