From 5a54774474f43ae29716751d6415563a59b92c7d Mon Sep 17 00:00:00 2001 From: pk33 Date: Mon, 11 Nov 2024 18:06:18 +0100 Subject: tidying up and basic input --- include/types33.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 include/types33.h (limited to 'include/types33.h') diff --git a/include/types33.h b/include/types33.h new file mode 100644 index 0000000..a72414e --- /dev/null +++ b/include/types33.h @@ -0,0 +1,47 @@ +#ifndef __TYPES33_H__ +#define __TYPES33_H__ + + +#include "stdlib.h" +#include "stdint.h" + +#include "sys/types.h" + + +#define E33_EXIT_SUCCESS 0 +#define E33_EXIT_FAILURE 1 +#define E33_TRUE 1 +#define E33_FALSE 0 + +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; + +typedef float f32; +typedef double f64; + +typedef uintptr_t uPtr; +typedef ssize_t Size; +typedef size_t uSize; + +typedef const char * String; + +typedef Size Error; +typedef Size Boolean; +typedef Size Bitfield; + +//#define sizeof(x) (Size)sizeof(x) +//#define alignof(x) (Size)_Alignof(x) +//#define countof(a) (sizeof(a) / sizeof(*(a))) +//#define lengthof(s) (countof(s) - 1) + +//#define assert(c) while( !(c) ){ __builtin_unreachable(); } + + +#endif /* __TYPES33_H__ */ -- cgit v1.2.3