blob: 58937c2688ee96444cefcbeed422f906cd5a1164 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// MIT License, Copyright (c) 2020 Marvin Borner
#ifndef CONV_H
#define CONV_H
#include <def.h>
int itoa(s32 value, char *buffer, u32 base);
char *ftoa(f64 value, char *buffer, u32 width);
#endif
|