1REWINDDIR(3P) POSIX Programmer's Manual REWINDDIR(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
11
13 rewinddir — reset the position of a directory stream to the beginning
14 of a directory
15
17 #include <dirent.h>
18
19 void rewinddir(DIR *dirp);
20
22 The rewinddir() function shall reset the position of the directory
23 stream to which dirp refers to the beginning of the directory. It shall
24 also cause the directory stream to refer to the current state of the
25 corresponding directory, as a call to opendir() would have done. If
26 dirp does not refer to a directory stream, the effect is undefined.
27
28 After a call to the fork() function, either the parent or child (but
29 not both) may continue processing the directory stream using readdir(),
30 rewinddir(), or seekdir(). If both the parent and child processes use
31 these functions, the result is undefined.
32
34 The rewinddir() function shall not return a value.
35
37 No errors are defined.
38
39 The following sections are informative.
40
42 None.
43
45 The rewinddir() function should be used in conjunction with opendir(),
46 readdir(), and closedir() to examine the contents of the directory.
47 This method is recommended for portability.
48
50 None.
51
53 None.
54
56 closedir(), fdopendir(), readdir()
57
58 The Base Definitions volume of POSIX.1‐2008, <dirent.h>, <sys_types.h>
59
61 Portions of this text are reprinted and reproduced in electronic form
62 from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
63 -- Portable Operating System Interface (POSIX), The Open Group Base
64 Specifications Issue 7, Copyright (C) 2013 by the Institute of Electri‐
65 cal and Electronics Engineers, Inc and The Open Group. (This is
66 POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
67 event of any discrepancy between this version and the original IEEE and
68 The Open Group Standard, the original IEEE and The Open Group Standard
69 is the referee document. The original Standard can be obtained online
70 at http://www.unix.org/online.html .
71
72 Any typographical or formatting errors that appear in this page are
73 most likely to have been introduced during the conversion of the source
74 files to man page format. To report such errors, see https://www.ker‐
75 nel.org/doc/man-pages/reporting_bugs.html .
76
77
78
79IEEE/The Open Group 2013 REWINDDIR(3P)