blob: d7a1d8d93126017ad34b81cc4daa262e86b9fbf1 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <string.h>
#include "dirstream.h"
int alphasort(const void * a, const void * b)
{
return strcmp ((*(const struct dirent **) a)->d_name,
(*(const struct dirent **) b)->d_name);
}
|