Files
SplenkOS/kernel/src/cstr.h
SpookyDervish 8d9002d3ca print integers and doubles
still need to add hex but i gtg so ill do that later
2026-01-28 10:33:13 +11:00

6 lines
170 B
C

#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);