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

Function append_char

src/foundation/log.c:151–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

149}
150
151static void append_char(char *buf, size_t bufsz, size_t *pos, char ch) {
152 if (*pos < bufsz - 1) {
153 buf[*pos] = ch;
154 }
155 (*pos)++;
156}
157
158static void append_raw(char *buf, size_t bufsz, size_t *pos, const char *s) {
159 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