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

Function adr_append_line

src/store/store.c:5710–5719  ·  view source on GitHub ↗

Append a line to the current section content buffer. */

Source from the content-addressed store, hash-verified

5708
5709/* Append a line to the current section content buffer. */
5710static void adr_append_line(char *buf, int buf_sz, int *len, const char *line, int line_len) {
5711 if (*len > 0) {
5712 buf[(*len)++] = '\n';
5713 }
5714 if (*len + line_len < buf_sz - SKIP_ONE) {
5715 memcpy(buf + *len, line, line_len);
5716 *len += line_len;
5717 buf[*len] = '\0';
5718 }
5719}
5720
5721cbm_adr_sections_t cbm_adr_parse_sections(const char *content) {
5722 cbm_adr_sections_t result;

Callers 1

cbm_adr_parse_sectionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected