J
Joe
Hi,
The declaration of qsort is:
void qsort(void *base, size_t count, size_t size, int (*comp)(const void
*e1, const void *e2));
Since const is used in the declaration of the comparison function, why isn't
the first argument to the qsort function declared as "const void *base" ?
Many thanks,
Joe Hesse
The declaration of qsort is:
void qsort(void *base, size_t count, size_t size, int (*comp)(const void
*e1, const void *e2));
Since const is used in the declaration of the comparison function, why isn't
the first argument to the qsort function declared as "const void *base" ?
Many thanks,
Joe Hesse