Go to the documentation of this file. 1 #ifndef _LINUX_BSEARCH_H
2 #define _LINUX_BSEARCH_H
4 #include <linux/types.h>
6 void *
bsearch(
const void *
key,
const void *base,
size_t num,
size_t size,
7 int (*cmp)(
const void *key,
const void *elt));