Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
33
void JSONencoder::add(char c) {
34
_linebuf += c;
35
if (_channel && _linebuf.length() >= 100) {
36
flush();
37
}
38
}
39
40
void JSONencoder::verbatim(const std::string& s) {
41
for (auto const c : s) {
Callers
nothing calls this directly
Calls
1
length
Method · 0.80
Tested by
no test coverage detected