diff options
Diffstat (limited to 'generic.h')
-rw-r--r-- | generic.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -33,6 +33,17 @@ #define MIN(a,b) ((a)<(b)?(a):(b)) #define MAX(a,b) ((a)<(b)?(b):(a) +typedef unsigned long int Uint32; +typedef signed long int int32; +typedef unsigned short int Uint16; +typedef signed short int int16; +typedef unsigned char Uint8; +typedef signed char int8; + +typedef Uint8 Byte; +typedef Uint16 Word; +typedef Uint32 DWord; + extern char verbosity; void printm(int level, char * fmt, ...); char ** split(char * s, char t); |