* manual/arith.texi: Document MTASC-safety properties.
[jlayton/glibc.git] / include / dirent.h
1 #ifndef _DIRENT_H
2 # ifndef _ISOMAC
3 #  include <dirstream.h>
4 # endif
5 # include <dirent/dirent.h>
6 # ifndef _ISOMAC
7 # include <sys/stat.h>
8 # include <stdbool.h>
9
10 struct scandir_cancel_struct
11 {
12   DIR *dp;
13   void *v;
14   size_t cnt;
15 };
16
17 /* Now define the internal interfaces.  */
18 extern DIR *__opendir (const char *__name);
19 extern DIR *__opendirat (int dfd, const char *__name) internal_function;
20 extern DIR *__fdopendir (int __fd);
21 extern int __closedir (DIR *__dirp);
22 extern struct dirent *__readdir (DIR *__dirp);
23 extern struct dirent64 *__readdir64 (DIR *__dirp);
24 extern int __readdir_r (DIR *__dirp, struct dirent *__entry,
25                         struct dirent **__result);
26 extern int __readdir64_r (DIR *__dirp, struct dirent64 *__entry,
27                           struct dirent64 **__result);
28 extern int __scandir64 (const char * __dir,
29                         struct dirent64 *** __namelist,
30                         int (*__selector) (const struct dirent64 *),
31                         int (*__cmp) (const struct dirent64 **,
32                                       const struct dirent64 **));
33 extern __ssize_t __getdirentries (int __fd, char *__restrict __buf,
34                                 size_t __nbytes,
35                                 __off_t *__restrict __basep)
36      __THROW __nonnull ((2, 4));
37 extern __ssize_t __getdents (int __fd, char *__buf, size_t __nbytes)
38      internal_function;
39 extern __ssize_t __getdents64 (int __fd, char *__buf, size_t __nbytes)
40      internal_function;
41 extern int __alphasort64 (const struct dirent64 **a, const struct dirent64 **b)
42      __attribute_pure__;
43 extern int __versionsort64 (const struct dirent64 **a,
44                             const struct dirent64 **b)
45      __attribute_pure__;
46 extern DIR *__alloc_dir (int fd, bool close_fd, int flags,
47                          const struct stat64 *statp)
48      internal_function;
49 extern void __scandir_cancel_handler (void *arg);
50
51 libc_hidden_proto (rewinddir)
52 libc_hidden_proto (scandirat)
53 libc_hidden_proto (scandirat64)
54 # endif
55
56 #endif