You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
397 B
14 lines
397 B
#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 */
|