1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-31 22:22:34 +03:00

Implement atoi, ltoa, dtostrf

This commit is contained in:
Ivan Grokhotkov
2014-12-23 12:33:33 +03:00
parent f51f18fb0a
commit 6aaa9ab3e6
3 changed files with 179 additions and 34 deletions

View File

@@ -37,8 +37,6 @@ char* ltoa (long val, char *s, int radix);
char* utoa (unsigned int val, char *s, int radix);
char* ultoa (unsigned long val, char *s, int radix);
char* dtostre (double val, char *s, unsigned char prec, unsigned char flags);
char* dtostrf (double val, signed char width, unsigned char prec, char *s);