print integers and doubles

still need to add hex but i gtg so ill do that later
This commit is contained in:
2026-01-28 10:33:13 +11:00
parent 32453f3c0b
commit 8d9002d3ca
8 changed files with 102 additions and 1 deletions

6
kernel/src/cstr.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
#include <stdint.h>
const char* to_string(uint64_t value);
const char* to_string(int64_t value);
const char* to_string(double value, uint8_t decimalPlaces);