From 5a26e1f481fe85f08093a414e27c1056b85c6715 Mon Sep 17 00:00:00 2001 From: Clement Sibille Date: Thu, 9 May 2024 08:58:14 +0900 Subject: Initial commit --- src/lisiblestd/types.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/lisiblestd/types.h (limited to 'src/lisiblestd/types.h') diff --git a/src/lisiblestd/types.h b/src/lisiblestd/types.h new file mode 100644 index 0000000..e16728a --- /dev/null +++ b/src/lisiblestd/types.h @@ -0,0 +1,20 @@ +#ifndef LSTD_TYPES_H +#define LSTD_TYPES_H + +#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 size_t usize; + +#endif // LSTD_TYPES_H -- cgit v1.2.3