rcx

library of miscellaneous bits of C code
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

commit 25e4d795605da5c15967983f53325dd014d3e6b3
parent 67b68bf991b3688a3657dfe382a92074afc454c4
Author: Robert Russell <robertrussell.72001@gmail.com>
Date:   Sat,  6 Jul 2024 16:25:59 -0700

Add f32 and f64 typedefs

Diffstat:
Minc/def.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/inc/def.h b/inc/def.h @@ -258,6 +258,9 @@ typedef uintptr_t uptr; #define USIZE_MAX SIZE_MAX typedef size_t usize; +typedef float f32; +typedef double f64; + #define RUNE_BITS 32 #define RUNE_BAD RUNE_C(0xFFFD) #define RUNE_MAX RUNE_C(0x10FFFF)