mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 14:30:53 +07: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 */
|