From d65da8eb0d997f46141e2f37f31d72458fa6a244 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 5 May 2024 20:26:07 +0530 Subject: [PATCH] char8_t -> char_t --- lib/base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base.h b/lib/base.h index ef79846..1c22d98 100644 --- a/lib/base.h +++ b/lib/base.h @@ -44,7 +44,7 @@ typedef float f32; typedef double f64; typedef u8 byte_t; -typedef i8 char8_t; +typedef i8 char_t; typedef u32 hword_t; typedef i32 int_t; typedef u64 word_t; @@ -73,7 +73,7 @@ typedef i64 long_t; typedef union { byte_t as_byte; - char8_t as_char; + char_t as_char; hword_t as_hword; int_t as_int; word_t as_word;