logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

rewinddir - reset directory stream

Attributes

       For an explanation of the terms used in this section, see attributes(7).
       ┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
       │ InterfaceAttributeValue   │
       ├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
       │ 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);

See Also