2.9
[glibc/nacl-glibc.git] / include / dirent.h
blob8f23aee234a89e029575987034ebd0261163ae94
1 #ifndef _DIRENT_H
2 # include <dirstream.h>
3 # include <dirent/dirent.h>
4 # include <sys/stat.h>
5 # include <stdbool.h>
7 /* Now define the internal interfaces. */
8 extern DIR *__opendir (__const char *__name);
9 extern DIR *__fdopendir (int __fd);
10 extern int __closedir (DIR *__dirp);
11 extern struct dirent *__readdir (DIR *__dirp);
12 extern struct dirent64 *__readdir64 (DIR *__dirp);
13 extern int __readdir_r (DIR *__dirp, struct dirent *__entry,
14 struct dirent **__result);
15 extern int __readdir64_r (DIR *__dirp, struct dirent64 *__entry,
16 struct dirent64 **__result);
17 extern int __scandir64 (__const char * __dir,
18 struct dirent64 *** __namelist,
19 int (*__selector) (__const struct dirent64 *),
20 int (*__cmp) (__const void *, __const void *));
21 extern __ssize_t __getdents (int __fd, char *__buf, size_t __nbytes)
22 internal_function;
23 extern __ssize_t __getdents64 (int __fd, char *__buf, size_t __nbytes)
24 internal_function;
25 extern int __alphasort64 (const void *a, const void *b)
26 __attribute_pure__;
27 extern int __versionsort64 (const void *a, const void *b)
28 __attribute_pure__;
29 extern DIR *__alloc_dir (int fd, bool close_fd, const struct stat64 *statp)
30 internal_function;
32 #endif