summaryrefslogtreecommitdiffstats
path: root/include/qsort.h
blob: d279dc2810750311dd1a2e99e06221a0b8a67560 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __QSORT_H
#define __QSORT_H

void qsort(void  *base, size_t nel, size_t width,
	   int (*comp)(const void *, const void *));

int strcmp_compar(const void *p1, const void *p2);

#endif /* __QSORT_H */