6 lines
170 B
C
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);
|