Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
kernel
/
shift
/
mainline
/
5a56a39be7ffb416dd5ec5e1489d5a3a8b6a63f2
/
.
/
include
/
linux
/
bsearch.h
blob: 8ed53d7524ea6910f83d54c465949eb3205b43bb [
file
] [
log
] [
blame
]
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef
_LINUX_BSEARCH_H
#define
_LINUX_BSEARCH_H
#include
<linux/types.h>
void
*
bsearch
(
const
void
*
key
,
const
void
*
base
,
size_t
num
,
size_t
size
,
cmp_func_t
cmp
);
#endif
/* _LINUX_BSEARCH_H */