1 2 3 4 5 6 7
#include <dirent.h> int alphasort(const struct dirent **d1, const struct dirent **d2) { // TODO: Actually sort it *d2 = *d1; return 0; }