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

Function dynbuf_init

internal/cbm/sqlite_writer.c:295–299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

293} DynBuf;
294
295static void dynbuf_init(DynBuf *b) {
296 b->data = NULL;
297 b->len = 0;
298 b->cap = 0;
299}
300
301static bool dynbuf_ensure(DynBuf *b, int needed) {
302 if (b->len + needed <= b->cap) {

Callers 1

rec_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected