1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-14 13:41:23 +03:00

add Print::printf

This commit is contained in:
ficeto
2015-05-16 18:25:22 +03:00
parent 53cb1a0140
commit 0b168fd1bf
2 changed files with 12 additions and 0 deletions

View File

@ -63,6 +63,7 @@ class Print {
return write((const uint8_t *) buffer, size);
}
size_t printf(const char * format, ...);
size_t print(const __FlashStringHelper *);
size_t print(const String &);
size_t print(const char[]);