diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2023-10-30 22:11:54 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2023-10-30 22:12:34 +0000 |
| commit | 5c0311ff3095a5dd30fb15db54aa394498dd2bcf (patch) | |
| tree | 2abb0e3dc145e4372fcf07aeeb736279d00471e5 /include/engine/types.h | |
| parent | 3e3fe3d42206dc14baca2f50445e6fe8bb2d2480 (diff) | |
The great formattening!
Diffstat (limited to 'include/engine/types.h')
| -rw-r--r-- | include/engine/types.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/engine/types.h b/include/engine/types.h index 181e245..934cb63 100644 --- a/include/engine/types.h +++ b/include/engine/types.h @@ -1,24 +1,24 @@ #ifndef ENGINE_TYPES_H #define ENGINE_TYPES_H -#include <stdint.h> #include <stdbool.h> +#include <stdint.h> /* Signed */ -typedef int8_t i8; -typedef int16_t i16; -typedef int32_t i32; -typedef int64_t i64; +typedef int8_t i8; +typedef int16_t i16; +typedef int32_t i32; +typedef int64_t i64; /* Unsigned */ -typedef uint8_t u8; +typedef uint8_t u8; typedef uint16_t u16; typedef uint32_t u32; typedef uint64_t u64; /* floating points */ -typedef float f32; -typedef double f64; +typedef float f32; +typedef double f64; /* sizes */ #if __x86_64__ || __ppc64__ || _WIN64 |
