summaryrefslogtreecommitdiff
path: root/userland/libc/dirent/alphasort.c
blob: 43a4b5f44b0709316ee27b3ded2f3e2118709a37 (plain)
1
2
3
4
5
6
7
#include <dirent.h>

int alphasort(const struct dirent **d1, const struct dirent **d2) {
  // TODO: Actually sort it
  *d2 = *d1;
  return 0;
}