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