rewinddir - reset directory stream
Contents
Attributes
For an explanation of the terms used in this section, see attributes(7).
┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
│ Interface │ Attribute │ Value │
├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
│ rewinddir() │ Thread safety │ MT-Safe │
└─────────────────────────────────────────────────────────────────────────────┴───────────────┴─────────┘
Description
The rewinddir() function resets the position of the directory stream dirp to the beginning of the
directory.
History
POSIX.1-2001, SVr4, 4.3BSD.
Library
Standard C library (libc, -lc)
Name
rewinddir - reset directory stream
Return Value
The rewinddir() function returns no value.
See Also
closedir(3), opendir(3), readdir(3), scandir(3), seekdir(3), telldir(3) Linux man-pages 6.9.1 2024-05-02 rewinddir(3)
Standards
POSIX.1-2008.
Synopsis
#include<sys/types.h>#include<dirent.h>voidrewinddir(DIR*dirp);