From a9c159f5f7bf3479c3236735960597b4bc36a204 Mon Sep 17 00:00:00 2001 From: Nakidai Date: Fri, 5 Jul 2024 00:04:56 +0300 Subject: Add code --- include/types.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/types.h (limited to 'include/types.h') diff --git a/include/types.h b/include/types.h new file mode 100644 index 0000000..9c92d57 --- /dev/null +++ b/include/types.h @@ -0,0 +1,17 @@ +#ifndef __TYPES_H__ +#define __TYPES_H__ + +#include + + +typedef char s8; + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; + +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; + +#endif /* __TYPES_H__ */ -- cgit 1.4.1