aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/bsearch.h
blob: 62b1eb34885843ee3b8f74e267c13ee02ece6895 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* 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,
	      int (*cmp)(const void *key, const void *elt));

#endif /* _LINUX_BSEARCH_H */