MCPcopy Create free account
hub / github.com/GJDuck/e9patch / qsort

Function qsort

examples/stdlib.c:5663–5667  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5661 qsort_2(base, size, mid + 1, hi, compare);
5662}
5663static void qsort(void *base, size_t nmemb, size_t size,
5664 int (*compare)(const void *, const void *))
5665{
5666 qsort_2((uint8_t *)base, size, 0, (ssize_t)nmemb-1, compare);
5667}
5668
5669/****************************************************************************/
5670/* RANDOM */

Callers 2

read_srclinesFunction · 0.85
test_qsortFunction · 0.85

Calls 1

qsort_2Function · 0.85

Tested by 1

test_qsortFunction · 0.68