alphasort64.c 421 B

12345678910111213141516171819
  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 <_lfs_64.h>
  7. #include <dirent.h>
  8. #include <string.h>
  9. #include "dirstream.h"
  10. libc_hidden_proto(strcmp)
  11. int alphasort64(const void * a, const void * b)
  12. {
  13. return strcmp ((*(const struct dirent64 **) a)->d_name,
  14. (*(const struct dirent64 **) b)->d_name);
  15. }