Skip to content

Commit

Permalink
Added rest of number types
Browse files Browse the repository at this point in the history
  • Loading branch information
iWas-Coder committed Mar 29, 2024
1 parent d55b9c5 commit 9eab499
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/sk_defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,12 @@
#include <stdint.h>

typedef uint8_t u8;
typedef int8_t i8;
typedef uint16_t u16;
typedef int16_t i16;
typedef uint32_t u32;
typedef int32_t i32;
typedef uint64_t u64;
typedef int64_t i64;
typedef float f32;
typedef double f64;

0 comments on commit 9eab499

Please sign in to comment.