mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-16 03:52:16 +02:00
18 lines
374 B
C++
18 lines
374 B
C++
// Copyright Benoit Blanchon 2014-2015
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#include "../../include/ArduinoJson/Internals/StringBuilder.hpp"
|
|
|
|
using namespace ArduinoJson::Internals;
|
|
|
|
size_t StringBuilder::write(uint8_t c) {
|
|
if (length >= capacity) return 0;
|
|
|
|
buffer[length++] = c;
|
|
buffer[length] = '\0';
|
|
return 1;
|
|
}
|