gb6/src/types.h

12 lines
181 B
C
Raw Normal View History

2019-04-16 06:25:00 +00:00
#ifndef _TYPES_H
#define _TYPES_H
typedef unsigned char u8;
typedef unsigned short u16;
2022-06-21 00:09:29 +00:00
typedef unsigned long u32;
typedef unsigned long long u64;
2019-04-16 06:25:00 +00:00
typedef signed char s8;
2019-04-16 06:25:00 +00:00
#endif