sort.h 208 B

12345678910
  1. #ifndef _LINUX_SORT_H
  2. #define _LINUX_SORT_H
  3. #include <linux/types.h>
  4. void sort(void *base, size_t num, size_t size,
  5. int (*cmp)(const void *, const void *),
  6. void (*swap)(void *, void *, int));
  7. #endif