MCPcopy Create free account
hub / github.com/bdring/FluidNC / add

Method add

FluidNC/src/JSONEncoder.cpp:33–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 }
32}
33void JSONencoder::add(char c) {
34 _linebuf += c;
35 if (_channel && _linebuf.length() >= 100) {
36 flush();
37 }
38}
39
40void JSONencoder::verbatim(const std::string& s) {
41 for (auto const c : s) {

Callers

nothing calls this directly

Calls 1

lengthMethod · 0.80

Tested by

no test coverage detected