Update.
[glibc.git] / dirent / dirent.h
blob1ac68fa6118adb746fd1e5d53b27b74aca68558f
1 /* Copyright (C) 1991,92,93,94,95,96,97,98 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
20 * POSIX Standard: 5.1.2 Directory Operations <dirent.h>
23 #ifndef _DIRENT_H
24 #define _DIRENT_H 1
26 #include <features.h>
28 __BEGIN_DECLS
30 #include <bits/types.h>
32 /* This file defines `struct dirent'.
34 It defines the macro `_DIRENT_HAVE_D_NAMLEN' iff there is a `d_namlen'
35 member that gives the length of `d_name'.
37 It defines the macro `_DIRENT_HAVE_D_RECLEN' iff there is a `d_reclen'
38 member that gives the size of the entire directory entry.
40 It defines the macro `_DIRENT_HAVE_D_OFF' iff there is a `d_off'
41 member that gives the file offset of the next directory entry.
43 It defines the macro `_DIRENT_HAVE_D_TYPE' iff there is a `d_type'
44 member that gives the type of the file.
47 #include <bits/dirent.h>
49 #if (defined __USE_BSD || defined __USE_MISC) && !defined d_fileno
50 # define d_ino d_fileno /* Backward compatibility. */
51 #endif
53 /* These macros extract size information from a `struct dirent *'.
54 They may evaluate their argument multiple times, so it must not
55 have side effects. Each of these may involve a relatively costly
56 call to `strlen' on some systems, so these values should be cached.
58 _D_EXACT_NAMLEN (DP) returns the length of DP->d_name, not including
59 its terminating null character.
61 _D_ALLOC_NAMLEN (DP) returns a size at least (_D_EXACT_NAMLEN (DP) + 1);
62 that is, the allocation size needed to hold the DP->d_name string.
63 Use this macro when you don't need the exact length, just an upper bound.
64 This macro is less likely to require calling `strlen' than _D_EXACT_NAMLEN.
67 #ifdef _DIRENT_HAVE_D_NAMLEN
68 # define _D_EXACT_NAMLEN(d) ((d)->d_namlen)
69 # define _D_ALLOC_NAMLEN(d) (_D_EXACT_NAMLEN (d) + 1)
70 #else
71 # define _D_EXACT_NAMLEN(d) (strlen ((d)->d_name))
72 # ifdef _DIRENT_HAVE_D_RECLEN
73 # define _D_ALLOC_NAMLEN(d) (((char *) (d) + (d)->d_reclen) - &(d)->d_name[0])
74 # else
75 # define _D_ALLOC_NAMLEN(d) (sizeof (d)->d_name > 1 ? sizeof (d)->d_name : \
76 _D_EXACT_NAMLEN (d) + 1)
77 # endif
78 #endif
81 #ifdef __USE_BSD
82 /* File types for `d_type'. */
83 enum
85 DT_UNKNOWN = 0,
86 # define DT_UNKNOWN DT_UNKNOWN
87 DT_FIFO = 1,
88 # define DT_FIFO DT_FIFO
89 DT_CHR = 2,
90 # define DT_CHR DT_CHR
91 DT_DIR = 4,
92 # define DT_DIR DT_DIR
93 DT_BLK = 6,
94 # define DT_BLK DT_BLK
95 DT_REG = 8,
96 # define DT_REG DT_REG
97 DT_LNK = 10,
98 # define DT_LNK DT_LNK
99 DT_SOCK = 12
100 # define DT_SOCK DT_SOCK
103 /* Convert between stat structure types and directory types. */
104 # define IFTODT(mode) (((mode) & 0170000) >> 12)
105 # define DTTOIF(dirtype) ((dirtype) << 12)
106 #endif
109 /* This is the data type of directory stream objects.
110 The actual structure is opaque to users. */
111 typedef struct __dirstream DIR;
113 /* Open a directory stream on NAME.
114 Return a DIR stream on the directory, or NULL if it could not be opened. */
115 extern DIR *__opendir __P ((__const char *__name));
116 extern DIR *opendir __P ((__const char *__name));
118 /* Close the directory stream DIRP.
119 Return 0 if successful, -1 if not. */
120 extern int __closedir __P ((DIR *__dirp));
121 extern int closedir __P ((DIR *__dirp));
123 /* Read a directory entry from DIRP. Return a pointer to a `struct
124 dirent' describing the entry, or NULL for EOF or error. The
125 storage returned may be overwritten by a later readdir call on the
126 same DIR stream.
128 If the Large File Support API is selected we have to use the
129 appropriate interface. */
130 extern struct dirent *__readdir __P ((DIR *__dirp));
131 extern struct dirent64 *__readdir64 __P ((DIR *__dirp));
132 #ifndef __USE_FILE_OFFSET64
133 extern struct dirent *readdir __P ((DIR *__dirp));
134 #else
135 # ifdef __REDIRECT
136 extern struct dirent *__REDIRECT (readdir, __P ((DIR *__dirp)), readdir64);
137 # else
138 # define readdir readdir64
139 # endif
140 #endif
142 #ifdef __USE_LARGEFILE64
143 extern struct dirent64 *readdir64 __P ((DIR *__dirp));
144 #endif
146 #if defined __USE_POSIX || defined __USE_MISC
147 /* Reentrant version of `readdir'. Return in RESULT a pointer to the
148 next entry. */
149 extern int __readdir_r __P ((DIR *__dirp, struct dirent *__entry,
150 struct dirent **__result));
151 # ifndef __USE_FILE_OFFSET64
152 extern int readdir_r __P ((DIR *__dirp, struct dirent *__entry,
153 struct dirent **__result));
154 # else
155 # ifdef __REDIRECT
156 extern int __REDIRECT (readdir_r, __P ((DIR *__dirp, struct dirent *__entry,
157 struct dirent **__result)),
158 readdir64_r);
159 # else
160 # define readdir_r readdir64_r
161 # endif
162 # endif
164 # ifdef __USE_LARGEFILE64
165 extern int readdir64_r __P ((DIR *__dirp, struct dirent64 *__entry,
166 struct dirent64 **__result));
167 # endif
168 #endif /* POSIX or misc */
170 /* Rewind DIRP to the beginning of the directory. */
171 extern void rewinddir __P ((DIR *__dirp));
173 #if defined __USE_BSD || defined __USE_MISC || defined __USE_XOPEN
174 # include <bits/types.h>
176 /* Seek to position POS on DIRP. */
177 extern void seekdir __P ((DIR *__dirp, __off_t __pos));
179 /* Return the current position of DIRP. */
180 extern __off_t telldir __P ((DIR *__dirp));
181 #endif
183 #if defined __USE_BSD || defined __USE_MISC
185 /* Return the file descriptor used by DIRP. */
186 extern int dirfd __P ((DIR *__dirp));
188 # if defined __OPTIMIZE__ && defined _DIR_dirfd
189 # define dirfd(dirp) _DIR_dirfd (dirp)
190 # endif
192 # ifndef MAXNAMLEN
193 /* Get the definitions of the POSIX.1 limits. */
194 # include <bits/posix1_lim.h>
196 /* `MAXNAMLEN' is the BSD name for what POSIX calls `NAME_MAX'. */
197 # ifdef NAME_MAX
198 # define MAXNAMLEN NAME_MAX
199 # else
200 # define MAXNAMLEN 255
201 # endif
202 # endif
204 # define __need_size_t
205 # include <stddef.h>
207 /* Scan the directory DIR, calling SELECTOR on each directory entry.
208 Entries for which SELECT returns nonzero are individually malloc'd,
209 sorted using qsort with CMP, and collected in a malloc'd array in
210 *NAMELIST. Returns the number of entries selected, or -1 on error. */
211 # ifndef __USE_FILE_OFFSET64
212 extern int scandir __P ((__const char *__dir, struct dirent ***__namelist,
213 int (*__selector) (__const struct dirent *),
214 int (*__cmp) (__const __ptr_t, __const __ptr_t)));
215 # else
216 # ifdef __REDIRECT
217 extern int __REDIRECT (scandir,
218 __P ((__const char *__dir,
219 struct dirent ***__namelist,
220 int (*__selector) (__const struct dirent *),
221 int (*__cmp) (__const __ptr_t, __const __ptr_t))),
222 scandir64);
223 # else
224 # define scandir scandir64
225 # endif
226 # endif
228 # if defined __USE_GNU && defined __USE_LARGEFILE64
229 /* This function is like `scandir' but it uses the 64bit dirent structure.
230 Please note that the CMP function must now work with struct dirent64 **. */
231 extern int scandir64 __P ((__const char *__dir, struct dirent64 ***__namelist,
232 int (*__selector) (__const struct dirent64 *),
233 int (*__cmp) (__const __ptr_t, __const __ptr_t)));
234 # endif
236 /* Function to compare two `struct dirent's alphabetically. */
237 # ifndef __USE_FILE_OFFSET64
238 extern int alphasort __P ((__const __ptr_t __e1, __const __ptr_t __e2));
239 # else
240 # ifdef __REDIRECT
241 extern int __REDIRECT (alphasort,
242 __P ((__const __ptr_t __e1, __const __ptr_t __e2)),
243 alphasort64);
244 # else
245 # define alphasort alphasort64
246 # endif
247 # endif
249 # if defined __USE_GNU && defined __USE_LARGEFILE64
250 extern int alphasort64 __P ((__const __ptr_t __e1, __const __ptr_t __e2));
251 # endif
253 # ifdef __USE_GNU
254 /* Function to compare two `struct dirent's by name & version. */
255 # ifndef __USE_FILE_OFFSET64
256 extern int versionsort __P ((__const __ptr_t __e1, __const __ptr_t __e2));
257 # else
258 # ifdef __REDIRECT
259 extern int __REDIRECT (versionsort,
260 __P ((__const __ptr_t __e1, __const __ptr_t __e2)),
261 versionsort64);
262 # else
263 # define versionsort versionsort64
264 # endif
265 # endif
267 # ifdef __USE_LARGEFILE64
268 extern int versionsort64 __P ((__const __ptr_t __e1, __const __ptr_t __e2));
269 # endif
270 # endif
272 /* Read directory entries from FD into BUF, reading at most NBYTES.
273 Reading starts at offset *BASEP, and *BASEP is updated with the new
274 position after reading. Returns the number of bytes read; zero when at
275 end of directory; or -1 for errors. */
276 extern __ssize_t __getdirentries __P ((int __fd, char *__buf,
277 size_t __nbytes, __off_t *__basep));
278 extern __ssize_t getdirentries __P ((int __fd, char *__buf,
279 size_t __nbytes, __off_t *__basep));
282 #endif /* Use BSD or misc. */
284 __END_DECLS
286 #endif /* dirent.h */