#ifndef BTYPES_H #define BTYPES_H typedef signed char int8; typedef signed short int int16; typedef signed long int int32; typedef signed long long int int64; typedef unsigned char uInt8; typedef unsigned short int uInt16; typedef unsigned int uInt32; typedef unsigned long long int uInt64; #endif