Align libgc vcxproj with makefile.
[mono.git] / mono / utils / bsearch.h
1 /**
2  * \file
3  */
4
5 #ifndef __MONO_BSEARCH_H__
6 #define __MONO_BSEARCH_H__
7
8 #include <stdlib.h>
9
10 #include "mono/utils/mono-compiler.h"
11
12 typedef int (* BinarySearchComparer) (const void *key, const void *member);
13
14 void *
15 mono_binary_search (
16         const void *key,
17         const void *array,
18         size_t array_length,
19         size_t member_size,
20         BinarySearchComparer comparer);
21
22 #endif