diff options
| author | nasr <nsrddyn@gmail.com> | 2026-03-08 21:01:43 +0000 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-03-08 21:01:43 +0000 |
| commit | 71ced998122c357bc62e54d9bb4e124c88acf94b (patch) | |
| tree | 746fca3d71a8640478ad6b6f4429a19f4dfbbda8 /source/base/base.h | |
| parent | f8f24f8c67fe903e267ab29bb2fbb9d334a722de (diff) | |
refactor(main): worked on string handling in C and other stuff
Diffstat (limited to 'source/base/base.h')
| -rwxr-xr-x | source/base/base.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source/base/base.h b/source/base/base.h index ef23391..cf2a15f 100755 --- a/source/base/base.h +++ b/source/base/base.h | |||
| @@ -52,22 +52,22 @@ typedef uint32_t u32; | |||
| 52 | typedef uint16_t u16; | 52 | typedef uint16_t u16; |
| 53 | typedef uint8_t u8; | 53 | typedef uint8_t u8; |
| 54 | 54 | ||
| 55 | typedef int8_t i8; | 55 | typedef int8_t s8; |
| 56 | typedef int16_t i16; | 56 | typedef int16_t s16; |
| 57 | typedef int32_t i32; | 57 | typedef int32_t s32; |
| 58 | typedef int64_t i64; | 58 | typedef int64_t s64; |
| 59 | 59 | ||
| 60 | typedef float f32; | 60 | typedef float f32; |
| 61 | typedef double f64; | 61 | typedef double f64; |
| 62 | 62 | ||
| 63 | typedef i32 b32; | 63 | typedef s32 b32; |
| 64 | typedef i16 b16; | 64 | typedef s16 b16; |
| 65 | typedef u8 b8; | 65 | typedef u8 b8; |
| 66 | 66 | ||
| 67 | typedef uintptr_t umm; | 67 | typedef uintptr_t umm; |
| 68 | typedef intptr_t smm; | 68 | typedef intptr_t smm; |
| 69 | 69 | ||
| 70 | #define TRUE (0 == 0) | 70 | #define TRUE (1 == 1) |
| 71 | #define FALSE (0 != 0) | 71 | #define FALSE (1 != 1) |
| 72 | 72 | ||
| 73 | #endif | 73 | #endif |
