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

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface

Application Usage

       The  rewinddir()  function  should  be  used  in conjunction with opendir(), readdir(), and closedir() to
       examine the contents of the directory. This method is recommended for portability.

Description

       The  rewinddir()  function  shall  reset the position of the directory stream to which dirp refers to the
       beginning of the directory. It shall also cause the directory stream to refer to the current state of the
       corresponding directory, as a call to opendir() would have done. If dirp does not refer  to  a  directory
       stream, the effect is undefined.

       After  a  call  to the fork() function, either the parent or child (but not both) may continue processing
       the directory stream using readdir(), rewinddir(), or seekdir().  If both the parent and child  processes
       use these functions, the result is undefined.

Errors

       No errors are defined.

       Thefollowingsectionsareinformative.

Examples

       None.

Future Directions

       None.

Name

       rewinddir — reset the position of a directory stream to the beginning of a directory

Prolog

       This  manual  page  is part of the POSIX Programmer's Manual.  The Linux implementation of this interface
       may differ (consult the corresponding Linux manual page for details of Linux behavior), or the  interface
       may not be implemented on Linux.

Rationale

       None.

Return Value

       The rewinddir() function shall not return a value.

See Also

closedir(), fdopendir(), readdir()

       The Base Definitions volume of POSIX.1‐2017, <dirent.h>, <sys_types.h>

Synopsis

       #include <dirent.h>

       void rewinddir(DIR *dirp);

See Also