Files
thirdparty-ArduinoJson/include/ArduinoJson/Internals/QuotedString.hpp
2014-10-23 19:54:00 +02:00

19 lines
300 B
C++

/*
* Arduino JSON library
* Benoit Blanchon 2014 - MIT License
*/
#pragma once
#include "../Arduino/Print.hpp"
namespace ArduinoJson {
namespace Internals {
class QuotedString {
public:
static size_t printTo(const char *, Print *);
static char *extractFrom(char *input, char **end);
};
}
}