8 lines
158 B
C
8 lines
158 B
C
|
#include <string.h>
|
||
|
#include "compat.h"
|
||
|
|
||
|
int alphasort(const struct dirent **a, const struct dirent **b)
|
||
|
{
|
||
|
return (strcmp((*a)->d_name, (*b)->d_name));
|
||
|
}
|