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.
tdegames/kpat/freecell-solver/jhjtypes.h

26 lines
617 B

/*
jhjtypes.h - header file for Justin-Heyes Jones' defined types
Written by Justin-Heyes Jones
This file is in the public domain (it's uncopyrighted).
Check out Justin-Heyes Jones' A* page from which this code has
originated:
http://www.geocities.com/jheyesjones/astar.html
*/
#ifndef FC_SOLVE__JHJTYPES_H
#define FC_SOLVE__JHJTYPES_H
/* Data types used in JHeyes-Jones sample code */
typedef int int32;
typedef unsigned int uint32;
typedef short int16;
typedef unsigned short uint16;
typedef signed char int8;
typedef unsigned char uint8;
#endif /* #ifdef FC_SOLVE__JHJTYPES_H */