blob: b689e64ed5361d9a839aaeffbd23331b0e9b0031 (
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(
ub1 *k, /* the key */
ub4 length, /* the length of the key */
ub4 initval /* the previous hash, or an arbitrary value */
);
#endif /* FC_SOLVE__LOOKUP2_H */
|