2018-03-06 18:18:53 +09:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
typedef unsigned long long uint64_t;
|
|
|
|
typedef unsigned long uint32_t;
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef signed char int8_t;
|
|
|
|
typedef unsigned long uintptr_t;
|
|
|
|
|
2018-06-09 17:58:29 +09:00
|
|
|
#define NULL (0)
|