about summary refs log tree commit diff
path: root/src/stdlib/qsort_nr.c
Commit message (Collapse)AuthorAgeFilesLines
* add qsort_r and make qsort a wrapper around itÉrico Nogueira2021-09-231-0/+14
we make qsort a wrapper by providing a wrapper_cmp function that uses the extra argument as a function pointer. should be optimized to a tail call on most architectures, as long as it's built with -fomit-frame-pointer, so the performance impact should be minimal. to keep the git history clean, for now qsort_r is implemented in qsort.c and qsort is implemented in qsort_nr.c. qsort.c also received a few trivial cleanups, including replacing (*cmp)() calls with cmp(). qsort_nr.c contains only wrapper_cmp and qsort as a qsort_r wrapper itself.