blob: dcf9700703f8dd74269eaa3d489411ce5fa42cc8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <dirent.h>
#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);
}
|