1REWINDDIR(3) Linux Programmer's Manual REWINDDIR(3)
2
3
4
6 rewinddir - reset directory stream
7
9 #include <sys/types.h>
10
11 #include <dirent.h>
12
13 void rewinddir(DIR *dirp);
14
16 The rewinddir() function resets the position of the directory stream
17 dirp to the beginning of the directory.
18
20 The rewinddir() function returns no value.
21
23 SVr4, 4.3BSD, POSIX.1-2001.
24
26 closedir(3), opendir(3), readdir(3), scandir(3), seekdir(3), telldir(3)
27
29 This page is part of release 3.53 of the Linux man-pages project. A
30 description of the project, and information about reporting bugs, can
31 be found at http://www.kernel.org/doc/man-pages/.
32
33
34
35 1995-06-11 REWINDDIR(3)