summaryrefslogtreecommitdiffstats
path: root/kpat/freecell-solver/lookup2.h
blob: 002502ed97aaca81a4ccee46e53dfcfbc8ce6674 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef FC_SOLVE__LOOKUP2_H
#define FC_SOLVE__LOOKUP2_H

typedef  unsigned long  int  ub4;   /* unsigned 4-byte quantities */
typedef  unsigned       char ub1;

ub4 freecell_solver_lookup2_hash_function( 
    register ub1 *k,        /* the key */
    register ub4  length,   /* the length of the key */
    register ub4  initval    /* the previous hash, or an arbitrary value */
        );

#endif /* FC_SOLVE__LOOKUP2_H */