summaryrefslogtreecommitdiff
path: root/sorters.c
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2014-06-28 15:35:46 -0500
committerBobby Bingham <koorogi@koorogi.info>2014-06-29 12:10:20 -0500
commitca78dc5f62fb0fea4f13ca17584a2084aaa92189 (patch)
tree27e8acfd749cd2206f9176a721de6a5dfa2d17a2 /sorters.c
parent854ac896df90bdb359fecd5baf15edf6eed504e8 (diff)
Initial stab at wikisort
Diffstat (limited to 'sorters.c')
-rw-r--r--sorters.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sorters.c b/sorters.c
index 33f85c2..99e000e 100644
--- a/sorters.c
+++ b/sorters.c
@@ -5,5 +5,6 @@ const struct sorter sorters[] = {
{ .name = "glibc quicksort", .func = glibc_quicksort },
{ .name = "glibc mergesort", .func = glibc_mergesort },
{ .name = "musl", .func = musl_qsort },
+ { .name = "wikisort", .func = wikisort },
{ 0 }
};