mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
22 lines
362 B
C++
22 lines
362 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);
|
|
};
|
|
}
|
|
} |