1 | /*
|
---|
2 | * Heap definitions
|
---|
3 | *
|
---|
4 | * Copyright 2001 Francois Gouget.
|
---|
5 | *
|
---|
6 | * This library is free software; you can redistribute it and/or
|
---|
7 | * modify it under the terms of the GNU Lesser General Public
|
---|
8 | * License as published by the Free Software Foundation; either
|
---|
9 | * version 2.1 of the License, or (at your option) any later version.
|
---|
10 | *
|
---|
11 | * This library is distributed in the hope that it will be useful,
|
---|
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
14 | * Lesser General Public License for more details.
|
---|
15 | *
|
---|
16 | * You should have received a copy of the GNU Lesser General Public
|
---|
17 | * License along with this library; if not, write to the Free Software
|
---|
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
19 | */
|
---|
20 |
|
---|
21 | /*
|
---|
22 | * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
23 | * other than GPL or LGPL is available it will apply instead, Sun elects to use only
|
---|
24 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
25 | * a choice of LGPL license versions is made available with the language indicating
|
---|
26 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
27 | * of the LGPL is applied is otherwise unspecified.
|
---|
28 | */
|
---|
29 | #ifndef __WINE_SEARCH_H
|
---|
30 | #define __WINE_SEARCH_H
|
---|
31 | #ifndef __WINE_USE_MSVCRT
|
---|
32 | #define __WINE_USE_MSVCRT
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #if defined(__x86_64__) && !defined(_WIN64)
|
---|
36 | #define _WIN64
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | #if !defined(_MSC_VER) && !defined(__int64)
|
---|
40 | # ifdef _WIN64
|
---|
41 | # define __int64 long
|
---|
42 | # else
|
---|
43 | # define __int64 long long
|
---|
44 | # endif
|
---|
45 | #endif
|
---|
46 |
|
---|
47 | #ifndef _SIZE_T_DEFINED
|
---|
48 | #ifdef _WIN64
|
---|
49 | typedef unsigned __int64 size_t;
|
---|
50 | #else
|
---|
51 | typedef unsigned int size_t;
|
---|
52 | #endif
|
---|
53 | #define _SIZE_T_DEFINED
|
---|
54 | #endif
|
---|
55 |
|
---|
56 |
|
---|
57 | #ifdef __cplusplus
|
---|
58 | extern "C" {
|
---|
59 | #endif
|
---|
60 |
|
---|
61 | void* _lfind(const void*,const void*,unsigned int*,unsigned int,
|
---|
62 | int (*)(const void*,const void*));
|
---|
63 | void* _lsearch(const void*,void*,unsigned int*,unsigned int,
|
---|
64 | int (*)(const void*,const void*));
|
---|
65 | void* bsearch(const void*,const void*,size_t,size_t,
|
---|
66 | int (*)(const void*,const void*));
|
---|
67 | void qsort(void*,size_t,size_t,
|
---|
68 | int (*)(const void*,const void*));
|
---|
69 |
|
---|
70 | #ifdef __cplusplus
|
---|
71 | }
|
---|
72 | #endif
|
---|
73 |
|
---|
74 |
|
---|
75 | static inline void* lfind(const void* match, const void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*)) { return _lfind(match, start, array_size, elem_size, cf); }
|
---|
76 | static inline void* lsearch(const void* match, void* start, unsigned int* array_size, unsigned int elem_size, int (*cf)(const void*,const void*) ) { return _lsearch(match, start, array_size, elem_size, cf); }
|
---|
77 |
|
---|
78 | #endif /* __WINE_SEARCH_H */
|
---|