1REWINDDIR(3) Linux Programmer's Manual REWINDDIR(3)
23
4
NAME
6rewinddir - reset directory stream
7
SYNOPSIS
9#include <sys/types.h>
1011
#include <dirent.h>
1213
void rewinddir(DIR *dir);
14
DESCRIPTION
16The rewinddir() function resets the position of the directory stream
17dir to the beginning of the directory.
18
RETURN VALUE
20The rewinddir() function returns no value.
21
CONFORMING TO
23SVr4, 4.3BSD, POSIX.1-2001.
24
SEE ALSO
26closedir(3), opendir(3), readdir(3), scandir(3), seekdir(3), telldir(3)
2728
29
30
1995-06-11 REWINDDIR(3)