Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.9
/
b75e2e3d2824803f1e8b620e99cf5f228c58a200
/
.
/
include
/
linux
/
sort.h
blob: d534da2b55750983571987b33761e09da71babc4 [
file
] [
log
] [
blame
]
#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