~ubuntu-branches/ubuntu/maverick/freecell-solver/maverick

« back to all changes in this revision

Viewing changes to jhjtypes.h

  • Committer: Bazaar Package Importer
  • Author(s): RISKO Gergely
  • Date: 2002-04-06 11:35:18 UTC
  • Revision ID: james.westby@ubuntu.com-20020406113518-n398kvu45dixasoh
Tags: upstream-2.4.1
ImportĀ upstreamĀ versionĀ 2.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    jhjtypes.h - header file for Justin-Heyes Jones' defined types
 
3
 
 
4
    Written by Justin-Heyes Jones
 
5
 
 
6
    This file is in the public domain (it's uncopyrighted).
 
7
 
 
8
    Check out Justin-Heyes Jones' A* page from which this code has
 
9
    originated:
 
10
        http://www.geocities.com/jheyesjones/astar.html
 
11
*/
 
12
 
 
13
#ifndef __JHJTYPES_H
 
14
#define __JHJTYPES_H
 
15
 
 
16
/* Data types used in JHeyes-Jones sample code */
 
17
 
 
18
typedef int int32;
 
19
typedef unsigned int uint32;
 
20
typedef short int16;
 
21
typedef unsigned short uint16;
 
22
typedef signed char int8;
 
23
typedef unsigned char uint8;
 
24
 
 
25
#endif /* #ifdef __JHJTYPES_H */