]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/bsearch.h
ACPI: PM: Introduce "poweroff" callbacks for ACPI PM domain and LPSS
[mirror_ubuntu-bionic-kernel.git] / include / linux / bsearch.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1a94dc35
TA
2#ifndef _LINUX_BSEARCH_H
3#define _LINUX_BSEARCH_H
4
5#include <linux/types.h>
6
7void *bsearch(const void *key, const void *base, size_t num, size_t size,
8 int (*cmp)(const void *key, const void *elt));
9
10#endif /* _LINUX_BSEARCH_H */