versionsort64.c 408 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2008-2009 Hai Zaar, Codefidence Ltd <haizaar@codefidence.com>
  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. int versionsort64(const void *a, const void *b)
  11. {
  12. return strverscmp((*(const struct dirent64 **) a)->d_name,
  13. (*(const struct dirent64 **) b)->d_name);
  14. }