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 7 #include <dirent.h> 8 #include <string.h> 9 #include "dirstream.h" 10 versionsort(const struct dirent ** a,const struct dirent ** b)11int versionsort(const struct dirent **a, const struct dirent **b) 12 { 13 return strverscmp((*a)->d_name, (*b)->d_name); 14 } 15 #if __WORDSIZE == 64 16 strong_alias_untyped(versionsort,versionsort64) 17 #endif 18