Files
ArduinoJson/JsonGenerator/IndentedPrintDecorator.cpp
2014-08-25 09:17:32 +02:00

11 lines
187 B
C++

/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#include "IndentedPrintDecorator.h"
size_t IndentedPrintDecorator::write(uint8_t c)
{
return sink.write(c);
}