musl-tcc/src/dirent/alphasort.c

10 lines
191 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <string.h>
#include <dirent.h>
int alphasort(const struct dirent **a, const struct dirent **b)
{
return strcoll((*a)->d_name, (*b)->d_name);
}
weak_alias(alphasort, alphasort64);