mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-17 20:42:24 +02:00
14 lines
225 B
C++
14 lines
225 B
C++
/*
|
|
* Arduino JSON library
|
|
* Benoit Blanchon 2014 - MIT License
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "JsonArray.h"
|
|
|
|
void JsonArray::writeTo(char* buffer, size_t bufferSize)
|
|
{
|
|
strncpy(buffer, "[]", bufferSize);
|
|
|
|
} |