blob: 5a98f4c2570b3ab67873ee5b3c481cc5349100e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
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 */
|