mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 10:44:14 +08:00
10 lines
236 B
C
10 lines
236 B
C
|
#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 */
|