Refactor bigints, add int and float conv functions

Added functions to convert from/to ints/floats. Floats are converted
according to basic Steele&White algorithm (without speedup).
This commit is contained in:
2025-03-15 18:06:16 +03:00
parent 69515af77f
commit 82bea0ebf8
10 changed files with 1526 additions and 651 deletions

View File

@@ -92,6 +92,9 @@ set(BH_SOURCE
src/Math/Vec4i.c
src/Queue.c
src/Util.c
src/String/Int.c
src/String/Float.c
src/String/Core.c
)
set(BH_HEADER
@@ -104,6 +107,7 @@ set(BH_HEADER
include/BH/Queue.h
include/BH/Util.h
include/BH/Thread.h
include
)
set(BH_SOURCE_DUMMY