Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
libc-top-half
musl
src
dirent
alphasort.c
pretty
plain
permalink
blame
history
•
9 lines
•
191 B
1
#include <string.h>
2
#include <dirent.h>
3
4
int alphasort(const struct dirent **a, const struct dirent **b)
5
{
6
	return strcoll((*a)->d_name, (*b)->d_name);
7
}
8
9
weak_alias(alphasort, alphasort64);