/* ** ALPHASORT ** Trivial sorting predicate for scandir; puts entries in alphabetical order. */ #include #include #include int alphasort(d1, d2) struct direct **d1; struct direct **d2; { return strcmp(d1[0]->d_name, d2[0]->d_name); }