From 1a7161dbf43a9c549edc5d295a93ad9f340ee676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Blanchon?= Date: Sat, 10 Dec 2016 16:05:47 +0100 Subject: [PATCH] Updated API Reference (markdown) --- API-Reference.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/API-Reference.md b/API-Reference.md index 91598b4..05d766e 100644 --- a/API-Reference.md +++ b/API-Reference.md @@ -389,6 +389,7 @@ This will create a "prettified" JSON, if you want a compact JSON without space o ```c++ size_t prettyPrintTo(char* buffer, size_t size) const; +size_t prettyPrintTo(char buffer[size]) const; size_t prettyPrintTo(Print &) const; size_t prettyPrintTo(String &) const; size_t prettyPrintTo(std::string &) const; @@ -441,6 +442,7 @@ This will create a compact JSON, if you want a pretty JSON with spaces and line ```c++ size_t printTo(char* buffer, size_t size) const; +size_t printTo(char buffer[size]) const; size_t printTo(Print &) const; size_t printTo(String &) const; size_t printTo(std::string &) const; @@ -1171,6 +1173,7 @@ This will create a "prettified" JSON, if you want a compact JSON without space o ```c++ size_t prettyPrintTo(char* buffer, size_t size) const; +size_t prettyPrintTo(char buffer[size]) const; size_t prettyPrintTo(Print &) const; size_t prettyPrintTo(String &) const; size_t prettyPrintTo(std::string &) const; @@ -1221,6 +1224,7 @@ This will create a compact JSON, if you want a pretty JSON with spaces and line ```c++ size_t printTo(char* buffer, size_t size) const; +size_t printTo(char buffer[size]) const; size_t printTo(Print &) const; size_t printTo(String &) const; size_t printTo(std::string &) const;