added more int to string conversions

This commit is contained in:
Lauchmelder 2022-01-20 16:38:03 +01:00
parent 9fcfe4cb05
commit 5ec9cc709f
4 changed files with 55 additions and 25 deletions

View file

@ -3,4 +3,8 @@
#include "stdint.h"
int stoi(const char* string);
char* itoa(int number, char* string);
char* ultoa(unsigned long number, char* string, int base);
char* ltoa(long number, char* string, int base);
char* utoa(unsigned int number, char* string, int base);
char* itoa(int number, char* string, int base);