Displaying 1 result from an estimated 1 matches for "3b1ff59".
Did you mean:
1b1ffc59
2011 Jul 29
3
[PATCH 1/3] klibc: Add scandir() and alphasort() support.
...de/dirent.h | 7 +++++
usr/klibc/Kbuild | 2 +
usr/klibc/scandir.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 84 insertions(+), 1 deletions(-)
create mode 100644 usr/klibc/scandir.c
diff --git a/usr/include/dirent.h b/usr/include/dirent.h
index e324474..3b1ff59 100644
--- a/usr/include/dirent.h
+++ b/usr/include/dirent.h
@@ -30,4 +30,11 @@ static __inline__ int dirfd(DIR * __d)
return __d->__fd;
}
+__extern int scandir(const char *dirp, struct dirent ***namelist,
+ int (*filter)(const struct dirent *),
+ int (*compar)(const struct dire...