blob: d420495cbde1bac53b8e9b0984711d9ccb3e4109 [file] [log] [blame]
/*
* alphasort.c: alphasort
*/
#include <string.h>
#include <dirent.h>
int alphasort(const struct dirent **a, const struct dirent **b)
{
return strcmp((*a)->d_name, (*b)->d_name);
}