/* includes , which is this file. On a system which supports , this file is overridden by dirent.h in the libc/sys/.../sys directory. On a system which does not support , we will get this file which uses #error to force an error. */ #ifdef __cplusplus extern "C" { #endif /* XXX Emscripten */ #include struct dirent { ino_t d_ino; char d_name[MAXNAMLEN]; int d_off; int d_reclen; char d_type; }; #define DIR struct dirent DIR *opendir(const char *); void seekdir(DIR *, long); long telldir(DIR *); DIR *readdir(DIR *); int closedir(DIR *dirp); void rewinddir(DIR *dirp); int scandir(const char *dirp, struct dirent ***namelist, int (*filter)(const struct dirent *), int (*compar)(const struct dirent **, const struct dirent **)); enum { DT_UNKNOWN = 0, #define DT_UNKNOWN DT_UNKNOWN DT_DIR = 4 #define DT_DIR DT_DIR }; #ifdef __cplusplus } #endif