alphasort.c 421 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 <dirent.h>
  7. #include <string.h>
  8. #include "dirstream.h"
  9. /* Experimentally off - libc_hidden_proto(strcmp) */
  10. int alphasort(const void * a, const void * b)
  11. {
  12. return strcmp ((*(const struct dirent **) a)->d_name,
  13. (*(const struct dirent **) b)->d_name);
  14. }