Formated code with clang-format

This commit is contained in:
Benoit Blanchon
2014-10-23 19:54:00 +02:00
parent 888fdc1d54
commit 9175046f35
52 changed files with 2002 additions and 2638 deletions

View File

@ -7,16 +7,13 @@
#include "../Arduino/Print.hpp"
namespace ArduinoJson
{
namespace Internals
{
class QuotedString
{
public:
static size_t printTo(const char*, Print*);
namespace ArduinoJson {
namespace Internals {
class QuotedString {
public:
static size_t printTo(const char *, Print *);
static char* extractFrom(char* input, char** end);
};
}
static char *extractFrom(char *input, char **end);
};
}
}