- #ifndef _TYPES_H
- #define _TYPES_H
-
-
- typedef long long int sint64;
- typedef unsigned long long int uint64;
- typedef unsigned int uint32;
- typedef signed int sint32;
- typedef unsigned short uint16;
- typedef signed short sint16;
- typedef unsigned char uint8;
- typedef signed char sint8;
-
-
-
- #endif