1
1
Fork 0

Implementing and using ultoa (unsigned long to string)

This commit is contained in:
Lauren Toivanen 2023-06-16 03:57:09 +03:00
parent 76c9075f71
commit 743b22ccd6
Signed by: jt
GPG key ID: 9151B109B73ECAD5
3 changed files with 28 additions and 2 deletions

1
xtoa.h
View file

@ -3,5 +3,6 @@
char* itoa(int value, int base);
char* ltoa(long value, int base);
char* ultoa(unsigned long value, int base);
#endif