Sign in
mojo
/
mojo-tools
/
ed4bdf2b045dcf76699eb5095f037df4b8750a28
/
.
/
fusl
/
src
/
dirent
/
alphasort.c
blob: 42050fb7cb52eda81b04d923f674d7c9c80f6acc [
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
);
}
LFS64
(
alphasort
);