2014-08-25 09:06:21 +02:00
|
|
|
/*
|
|
|
|
* Arduino JSON library
|
|
|
|
* Benoit Blanchon 2014 - MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "IndentedPrintDecorator.h"
|
|
|
|
|
|
|
|
size_t IndentedPrintDecorator::write(uint8_t c)
|
|
|
|
{
|
2014-08-25 09:17:32 +02:00
|
|
|
return sink.write(c);
|
2014-08-25 09:06:21 +02:00
|
|
|
}
|