Sign in
mojo
/
mojo-testing
/
8188f0dfd609f0212bd427cfe1a0c2ce435f1e46
/
.
/
fusl
/
src
/
dirent
/
versionsort.c
blob: d86b21a704945e9067b65ce7da81ac60ff93112e [
file
]
#define
_GNU_SOURCE
#include
<string.h>
#include
<dirent.h>
#include
"libc.h"
int
versionsort
(
const
struct
dirent
**
a
,
const
struct
dirent
**
b
)
{
return
strverscmp
((*
a
)->
d_name
,
(*
b
)->
d_name
);
}