projects
/
firefly-linux-kernel-4.4.55.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'pm+acpi-4.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[firefly-linux-kernel-4.4.55.git]
/
include
/
linux
/
bsearch.h
1
#ifndef _LINUX_BSEARCH_H
2
#define _LINUX_BSEARCH_H
3
4
#include <linux/types.h>
5
6
void *bsearch(const void *key, const void *base, size_t num, size_t size,
7
int (*cmp)(const void *key, const void *elt));
8
9
#endif /* _LINUX_BSEARCH_H */