diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2014-07-04 10:45:37 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2014-07-04 10:45:37 -0500 |
commit | dbe88638530aacb4cffccfb0b58fa934fc78dd6b (patch) | |
tree | 1379ec704e9f2b6ce3e2c4b92da367103e662b35 /sorters.c | |
parent | 4178350f795d568cdba861b6200bb9a33944e1c9 (diff) |
Add the C++ reference wikisort implementation
Diffstat (limited to 'sorters.c')
-rw-r--r-- | sorters.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 } }; |