MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / append_raw

Function append_raw

src/foundation/log.c:158–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156}
157
158static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) {
159 if (!s) {
160 return;
161 }
162 while (*s) {
163 append_char(buf, bufsz, pos, *s++);
164 }
165}
166
167static void append_text_atom(char *buf, size_t bufsz, size_t *pos, const char *s) {
168 if (!s) {

Callers 3

append_json_stringFunction · 0.85
cbm_logFunction · 0.85
cbm_log_control_recordFunction · 0.85

Calls 1

append_charFunction · 0.85

Tested by

no test coverage detected