1REWINDDIR(P) POSIX Programmer's Manual REWINDDIR(P)
2
3
4
6 rewinddir - reset the position of a directory stream to the beginning
7 of a directory
8
10 #include <dirent.h>
11
12 void rewinddir(DIR *dirp);
13
14
16 The rewinddir() function shall reset the position of the directory
17 stream to which dirp refers to the beginning of the directory. It shall
18 also cause the directory stream to refer to the current state of the
19 corresponding directory, as a call to opendir() would have done. If
20 dirp does not refer to a directory stream, the effect is undefined.
21
22 After a call to the fork() function, either the parent or child (but
23 not both) may continue processing the directory stream using readdir(),
24 rewinddir(), or seekdir(). If both the parent and child processes use
25 these functions, the result is undefined.
26
28 The rewinddir() function shall not return a value.
29
31 No errors are defined.
32
33 The following sections are informative.
34
36 None.
37
39 The rewinddir() function should be used in conjunction with opendir(),
40 readdir(), and closedir() to examine the contents of the directory.
41 This method is recommended for portability.
42
44 None.
45
47 None.
48
50 closedir() , opendir() , readdir() , the Base Definitions volume of
51 IEEE Std 1003.1-2001, <dirent.h> <sys/types.h>
52
54 Portions of this text are reprinted and reproduced in electronic form
55 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
56 -- Portable Operating System Interface (POSIX), The Open Group Base
57 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
58 Electrical and Electronics Engineers, Inc and The Open Group. In the
59 event of any discrepancy between this version and the original IEEE and
60 The Open Group Standard, the original IEEE and The Open Group Standard
61 is the referee document. The original Standard can be obtained online
62 at http://www.opengroup.org/unix/online.html .
63
64
65
66IEEE/The Open Group 2003 REWINDDIR(P)