xref: /haiku/src/system/libroot/posix/musl/dirent/alphasort.c (revision 6a2d53e7237764eab0c7b6d121772f26d636fb60)
1 #include <string.h>
2 #include <dirent.h>
3 
4 int alphasort(const struct dirent **a, const struct dirent **b)
5 {
6 	return strcoll((*a)->d_name, (*b)->d_name);
7 }
8