mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-18 04:52:22 +02:00
11 lines
188 B
C++
11 lines
188 B
C++
![]() |
/*
|
||
|
* Arduino JSON library
|
||
|
* Benoit Blanchon 2014 - MIT License
|
||
|
*/
|
||
|
|
||
|
#include "IndentedPrintDecorator.h"
|
||
|
|
||
|
size_t IndentedPrintDecorator::write(uint8_t c)
|
||
|
{
|
||
|
return print.write(c);
|
||
|
}
|