Sign in
android-kvm
/
linux
/
a545e2ea149b9268c97228c6cd0288a4e1db310c
/
.
/
include
/
linux
/
sort.h
blob: d534da2b55750983571987b33761e09da71babc4 [
file
]
#ifndef
_LINUX_SORT_H
#define
_LINUX_SORT_H
#include
<linux/types.h>
void
sort
(
void
*
base
,
size_t
num
,
size_t
size
,
int
(*
cmp
)(
const
void
*,
const
void
*),
void
(*
swap
)(
void
*,
void
*,
int
));
#endif