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

Function append_raw

src/foundation/log.c:121–128  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

119}
120
121static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) {
122 if (!s) {
123 return;
124 }
125 while (*s) {
126 append_char(buf, bufsz, pos, *s++);
127 }
128}
129
130static void append_text_atom(char *buf, size_t bufsz, size_t *pos, const char *s) {
131 if (!s) {

Callers 2

append_json_stringFunction · 0.85
cbm_logFunction · 0.85

Calls 1

append_charFunction · 0.85

Tested by

no test coverage detected