alphasort.c 398 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  3. *
  4. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  5. */
  6. #include <dirent.h>
  7. #include <string.h>
  8. #include "dirstream.h"
  9. int alphasort(const struct dirent **a, const struct dirent **b)
  10. {
  11. return strcoll((*a)->d_name, (*b)->d_name);
  12. }
  13. #if __WORDSIZE == 64
  14. strong_alias_untyped(alphasort,alphasort64)
  15. #endif