mirror of
https://github.com/lua/lua
synced 2024-11-25 14:20:41 +03:00
26 lines
475 B
C
26 lines
475 B
C
|
/*
|
||
|
** TeCGraf - PUC-Rio
|
||
|
** $Id: $
|
||
|
*/
|
||
|
|
||
|
#ifndef types_h
|
||
|
#define types_h
|
||
|
|
||
|
#ifndef real
|
||
|
#define real float
|
||
|
#endif
|
||
|
|
||
|
typedef int Bool; /* boolean values */
|
||
|
|
||
|
typedef unsigned char Byte; /* unsigned 8 bits */
|
||
|
|
||
|
typedef unsigned short Word; /* unsigned 16 bits */
|
||
|
|
||
|
#define MAX_WORD 0xFFFD /* maximum value of a word (FFFF-2 for safety) */
|
||
|
|
||
|
typedef signed long Long; /* 32 bits */
|
||
|
|
||
|
typedef unsigned int IntPoint; /* unsigned with same size as a pointer (for hashing) */
|
||
|
|
||
|
#endif
|