summaryrefslogtreecommitdiff
path: root/sorters.c
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2014-07-04 10:45:37 -0500
committerBobby Bingham <koorogi@koorogi.info>2014-07-04 10:45:37 -0500
commitdbe88638530aacb4cffccfb0b58fa934fc78dd6b (patch)
tree1379ec704e9f2b6ce3e2c4b92da367103e662b35 /sorters.c
parent4178350f795d568cdba861b6200bb9a33944e1c9 (diff)
Add the C++ reference wikisort implementation
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 8db94e0..c2d04e5 100644
--- a/sorters.c
+++ b/sorters.c
@@ -9,6 +9,7 @@ const struct sorter sorters[] = {
{ .name = "glibc mergesort", .func = glibc_mergesort },
{ .name = "musl", .func = musl_qsort },
{ .name = "wikisort", .func = wikisort },
+ { .name = "wikisort (ref)", .func = wikisort_ref },
{ 0 }
};