Skip to content

Sorting

typedef int (*cmp_t)(void *, void *);
void qsort(void *a, size_t n, size_t es, cmp_t *cmp);

qsort referenced types: