16 lines
289 B
C
16 lines
289 B
C
#ifndef TYPES_H_
|
|
#define TYPES_H_
|
|
|
|
#define NULL ((void *)0)
|
|
|
|
typedef char int8;
|
|
typedef unsigned char uint8;
|
|
typedef short int16;
|
|
typedef unsigned short uint16;
|
|
typedef int int32;
|
|
typedef unsigned int uint32;
|
|
typedef long long int64;
|
|
typedef unsigned long long uint64;
|
|
|
|
#endif // TYPES_H_
|