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