8#ifndef ZEPHYR_INCLUDE_POSIX_DIRENT_H_
9#define ZEPHYR_INCLUDE_POSIX_DIRENT_H_
18#if (_POSIX_C_SOURCE >= 200809L) || (_XOPEN_SOURCE >= 700)
19int alphasort(
const struct dirent **d1,
const struct dirent **d2);
22#if (_POSIX_C_SOURCE >= 200809L) || (_XOPEN_SOURCE >= 700)
28#if (_POSIX_C_SOURCE >= 199506L) || (_XOPEN_SOURCE >= 500)
33#if (_POSIX_C_SOURCE >= 200809L) || (_XOPEN_SOURCE >= 700)
34int scandir(
const char *dir,
struct dirent ***namelist,
int (*sel)(
const struct dirent *),
35 int (*compar)(
const struct dirent **,
const struct dirent **));
37#if defined(_XOPEN_SOURCE)
38void seekdir(
DIR *dirp,
long loc);
39long telldir(
DIR *dirp);
struct dirent * readdir(DIR *dirp)
void rewinddir(DIR *dirp)
DIR * opendir(const char *dirname)
void DIR
Definition dirent.h:26