Changeset View
Changeset View
Standalone View
Standalone View
include/dirent.h
Show First 20 Lines • Show All 99 Lines • ▼ Show 20 Lines | |||||
#endif /* __BSD_VISIBLE */ | #endif /* __BSD_VISIBLE */ | ||||
#ifndef _KERNEL | #ifndef _KERNEL | ||||
__BEGIN_DECLS | __BEGIN_DECLS | ||||
#if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE >= 700 | #if __POSIX_VISIBLE >= 200809 || __XSI_VISIBLE >= 700 | ||||
int alphasort(const struct dirent **, const struct dirent **); | int alphasort(const struct dirent **, const struct dirent **); | ||||
int versionsort(const struct dirent **, const struct dirent **); | |||||
int dirfd(DIR *); | int dirfd(DIR *); | ||||
#endif | #endif | ||||
#if __BSD_VISIBLE | #if __BSD_VISIBLE | ||||
DIR *__opendir2(const char *, int); | DIR *__opendir2(const char *, int); | ||||
int fdclosedir(DIR *); | int fdclosedir(DIR *); | ||||
ssize_t getdents(int, char *, size_t); | ssize_t getdents(int, char *, size_t); | ||||
ssize_t getdirentries(int, char *, size_t, off_t *); | ssize_t getdirentries(int, char *, size_t, off_t *); | ||||
#endif | #endif | ||||
Show All 28 Lines |