aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/sort.h
blob: ec89c3aed4a73599351217230cba9a30836aa993 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef __XEN_SORT_H__
#define __XEN_SORT_H__

#include <xen/types.h>

void sort(void *base, size_t num, size_t size,
          int (*cmp)(const void *, const void *),
          void (*swap)(void *, void *, int));

#endif /* __XEN_SORT_H__ */