~ubuntu-branches/ubuntu/natty/freecell-solver/natty

« back to all changes in this revision

Viewing changes to fcs_dm.h

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2009-03-15 23:42:21 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090315234221-sx95hxyfyfgi0pja
Tags: 2.16.0-1
* Imported Upstream version 2.16.0 (closes: #518440)
* cmake is the new buildsystem

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    (It is not copyrighted)
10
10
*/
11
11
 
12
 
#ifndef __FCS_DATA_H
13
 
#define __FCS_DATA_H
 
12
#ifndef FC_SOLVE__FCS_DATA_H
 
13
#define FC_SOLVE__FCS_DATA_H
14
14
 
15
15
#ifdef __cplusplus
16
16
extern "C" {
19
19
#include <stddef.h>
20
20
 
21
21
 
22
 
void * freecell_solver_bsearch
 
22
void * fc_solve_bsearch
23
23
(
24
24
    void * key,
25
25
    void * void_array,
30
30
    int * found
31
31
);
32
32
 
33
 
int freecell_solver_merge_large_and_small_sorted_arrays
 
33
int fc_solve_merge_large_and_small_sorted_arrays
34
34
(
35
35
    void * void_big_array,
36
36
    size_t size_big_array,
45
45
}
46
46
#endif
47
47
 
48
 
#endif /* __FCS_DATA_H */
 
48
#endif /* FC_SOLVE__FCS_DATA_H */
49
49