diff options
Diffstat (limited to 'libc/include/dirent.h')
-rw-r--r-- | libc/include/dirent.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/include/dirent.h b/libc/include/dirent.h index edfb639..55eef7b 100644 --- a/libc/include/dirent.h +++ b/libc/include/dirent.h @@ -68,6 +68,11 @@ extern int readdir_r(DIR* dirp, struct dirent *entry, struct dire extern int closedir(DIR* dirp); extern void rewinddir(DIR *dirp); extern int dirfd(DIR* dirp); +extern int alphasort(const void *a, const void *b); +extern int scandir(const char *dir, struct dirent ***namelist, + int(*filter)(const struct dirent *), + int(*compar)(const struct dirent **, + const struct dirent **)); __END_DECLS |