// SPDX-License-Identifier: GPL-2.0-only1/*2* A generic implementation of binary search for the Linux kernel3*4* Copyright (C) 2008-2009 Ksplice, Inc.5* Author: Tim Abbott <[email protected]>6*/78#include <linux/export.h>9#include <linux/bsearch.h>10#include <linux/kprobes.h>1112/*13* bsearch - binary search an array of elements14* @key: pointer to item being searched for15* @base: pointer to first element to search16* @num: number of elements17* @size: size of each element18* @cmp: pointer to comparison function19*20* This function does a binary search on the given array. The21* contents of the array should already be in ascending sorted order22* under the provided comparison function.23*24* Note that the key need not have the same type as the elements in25* the array, e.g. key could be a string and the comparison function26* could compare the string with the struct's name field. However, if27* the key and elements in the array are of the same type, you can use28* the same comparison function for both sort() and bsearch().29*/30void *bsearch(const void *key, const void *base, size_t num, size_t size, cmp_func_t cmp)31{32return __inline_bsearch(key, base, num, size, cmp);33}34EXPORT_SYMBOL(bsearch);35NOKPROBE_SYMBOL(bsearch);363738