blob: 9769610518eb3f0c78a8cac426cbeb464b76a78a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#define _GNU_SOURCE
#include <string.h>
#include <dirent.h>
int versionsort(const struct dirent **a, const struct dirent **b)
{
return strverscmp((*a)->d_name, (*b)->d_name);
}
|