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;