summaryrefslogtreecommitdiff
path: root/themes/types.h
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2022-05-01 18:37:59 -0400
committermattkae <mattkae@protonmail.com>2022-05-01 18:37:59 -0400
commitdfc387644939aada1edb69f8f730e62f116f1ae3 (patch)
treed38b17d0b21fd579f1330546394462964a08600e /themes/types.h
parent1db914466663a1e4d0d827b8b9bd18840d7742eb (diff)
Fetching bunny model
Diffstat (limited to 'themes/types.h')
-rw-r--r--themes/types.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/themes/types.h b/themes/types.h
index 7bac7f3..d5c7938 100644
--- a/themes/types.h
+++ b/themes/types.h
@@ -2,15 +2,15 @@
#include <cstdint>
-typedef int8_t int8;
-typedef int16_t int16;
-typedef int32_t int32;
-typedef int64_t int64;
+typedef int8_t i8;
+typedef int16_t i16;
+typedef int32_t i32;
+typedef int64_t i64;
-typedef uint8_t uint8;
-typedef uint16_t uint16;
-typedef uint32_t uint32;
-typedef unsigned long uint64;
+typedef uint8_t u8;
+typedef uint16_t u16;
+typedef uint32_t u32;
+typedef unsigned long u64;
-typedef float float32;
-typedef double float64;
+typedef float f32;
+typedef double f64;