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

Function append_char

src/foundation/log.c:132–137  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

130}
131
132static void append_char(char *buf, size_t bufsz, size_t *pos, char ch) {
133 if (*pos < bufsz - 1) {
134 buf[*pos] = ch;
135 }
136 (*pos)++;
137}
138
139static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) {
140 if (!s) {

Callers 5

append_rawFunction · 0.85
append_text_atomFunction · 0.85
append_json_stringFunction · 0.85
cbm_logFunction · 0.85
cbm_log_control_recordFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected