commit a33f58ad9b13e0863026325643536daa0a033346 Author: 諏訪子 Date: Mon May 4 15:37:44 2026 +0900 C++タイプ diff --git a/types.hh b/types.hh new file mode 100644 index 0000000..1046d4b --- /dev/null +++ b/types.hh @@ -0,0 +1,21 @@ +#pragma once + +#include +#include +#include + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; + +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; + +typedef const char * cstr; +typedef void * any; + +using std::string; +using std::vector;