1
1
Fork 0

Separating itoa and ltoa to own file

This commit is contained in:
Lauren Toivanen 2023-06-15 06:40:38 +03:00
parent dd78c1cc7d
commit 76c9075f71
Signed by: jt
GPG key ID: 9151B109B73ECAD5
4 changed files with 67 additions and 33 deletions

7
xtoa.h Normal file
View file

@ -0,0 +1,7 @@
#ifndef HEADER_XTOA
#define HEADER_XTOA
char* itoa(int value, int base);
char* ltoa(long value, int base);
#endif