Sign in
coral
/
linux-mtk
/
d51d089ea374565aa06342dd4eba8ba77011b27f
/
.
/
include
/
linux
/
sort.h
blob: 2b99a5dd073d16ea1c94b6cfbc2d9d97e57b1ed7 [
file
] [
log
] [
blame
]
/* SPDX-License-Identifier: GPL-2.0 */
#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