1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
fcs_dm.h - Header file for Freecell Solver's Data Management
routines.
For more information consult fcs_dm.c.
Written by Shlomi Fish, 2000
This file is distributed under the public domain.
(It is not copyrighted)
*/
#ifndef FC_SOLVE__FCS_DATA_H
#define FC_SOLVE__FCS_DATA_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
void * freecell_solver_bsearch
(
void * key,
void * void_array,
size_t len,
size_t width,
int (* compare)(const void *, const void *, void *),
void * context,
int * found
);
int freecell_solver_merge_large_and_small_sorted_arrays
(
void * void_big_array,
size_t size_big_array,
void * void_small_array,
size_t size_small_array,
size_t width,
int (*compare) (const void *, const void *, void *),
void * context
);
#ifdef __cplusplus
}
#endif
#endif /* FC_SOLVE__FCS_DATA_H */
|