/*
	Solitaire solver
	(C) 2001 William Benfold
	wb199@soton.ac.uk
*/	



#include <stdlib.h>

#ifndef CHUNK_SIZE
#define CHUNK_SIZE 65536
#endif

typedef long long INDEX_TYPE;



unsigned char **makeSparseTable(unsigned int entries);

unsigned char *sparseLookup(unsigned char **table, INDEX_TYPE index);

