aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/inc/conv.h
blob: 8b8852622e859a56ce9fd4fd9c4f2124de30fadd (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(int value, char *buffer, int base);
char *ftoa(f64 value, char *buffer);

#endif