mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
16 lines
221 B
C++
16 lines
221 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#include "Print.h"
|
|
|
|
size_t Print::write(const char* s)
|
|
{
|
|
size_t n = 0;
|
|
while (*s)
|
|
{
|
|
n += write(*s++);
|
|
}
|
|
return n;
|
|
} |