blob: 1981ecf915e953ebc8bee4384b5f1aca44a79860 [file] [log] [blame]
#define _GNU_SOURCE
#include <dirent.h>
#include <string.h>
int versionsort(const struct dirent** a, const struct dirent** b) {
return strverscmp((*a)->d_name, (*b)->d_name);
}