blob: ee7df8a10dcd875b006bd0b96aa62ee49005b39b (
plain)
1
2
3
4
5
6
|
/* This is a function ported from the Linux kernel lib/sort.c */
void sort(void *base, size_t num, size_t len,
int (*cmp_func)(const void *, const void *),
void (*swap_func)(void *, void *, int size));
|