The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

 NAME

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

 SYNOPSIS



#include <sys/types.h>
#include <dirent.h>

void rewinddir(DIR *dirp);

 DESCRIPTION

The rewinddir() function resets the position of the directory stream to which dirp refers to the beginning of the directory. It also causes 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.

 RETURN VALUE

The rewinddir() function does not return a value.

 ERRORS

No errors are defined.

 EXAMPLES

None.

 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.

 FUTURE DIRECTIONS

None.

 SEE ALSO

closedir(), opendir(), readdir(), <dirent.h>, <sys/types.h>.

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]