mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-13 18:46:35 +02:00
21 lines
353 B
C++
21 lines
353 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#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);
|
|
};
|
|
}
|
|
}
|