diff options
| author | Tyge Lovset <[email protected]> | 2023-05-19 19:06:37 +0200 |
|---|---|---|
| committer | Tyge Lovset <[email protected]> | 2023-05-19 19:06:37 +0200 |
| commit | d629139d053fdc1ff24bc0dc1985e1a2d1a0ac47 (patch) | |
| tree | 86af3209ee9f11d38cbb053ee658b0f2dae6565d /misc/benchmarks | |
| parent | 424e522d6f081bb8649777a3376e1dd5913daac8 (diff) | |
| download | STC-modified-d629139d053fdc1ff24bc0dc1985e1a2d1a0ac47.tar.gz STC-modified-d629139d053fdc1ff24bc0dc1985e1a2d1a0ac47.zip | |
Added container equality function to docs _eq(c1, c2).
Diffstat (limited to 'misc/benchmarks')
| -rw-r--r-- | misc/benchmarks/various/csort_bench.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/benchmarks/various/csort_bench.c b/misc/benchmarks/various/csort_bench.c index 4d1149fc..d434693f 100644 --- a/misc/benchmarks/various/csort_bench.c +++ b/misc/benchmarks/various/csort_bench.c @@ -32,7 +32,7 @@ void testsort(Ints *a, int size, const char *desc) { #elif defined QSORT printf("qsort: "); qsort(a->data, size, sizeof *a->data, cmp_int); #else - printf("stc_qsort: "); Ints_sort_n(a, size); + printf("STC sort_n: "); Ints_sort_n(a, size); #endif t = clock() - t; |
