Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
dirent
/
alphasort.c
blob: d22d30462efdafbcee877a449a611eeee8e40b82 [
file
] [
log
] [
blame
]
#include
<string.h>
#include
<dirent.h>
#include
"libc.h"
int
alphasort
(
const
struct
dirent
**
a
,
const
struct
dirent
**
b
)
{
return
strcoll
((*
a
)->
d_name
,
(*
b
)->
d_name
);
}