blob: 03d2393a0167fa44863992a15786f718a96c08ff [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);
}