alphasort64.c 384 B

123456789101112131415161718
  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. #if __WORDSIZE != 64
  9. # include <string.h>
  10. # include "dirstream.h"
  11. int alphasort64(const struct dirent64 **a, const struct dirent64 **b)
  12. {
  13. return strcoll((*a)->d_name, (*b)->d_name);
  14. }
  15. #endif