blob: ab2624e2cc415dff8d4b4caf14a8a1dee69cd066 [file] [log] [blame]
#include <string.h>
#include <dirent.h>
int alphasort(const struct dirent **a, const struct dirent **b)
{
return strcoll((*a)->d_name, (*b)->d_name);
}