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

Function dynbuf_init

internal/cbm/sqlite_writer.c:306–310  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304} DynBuf;
305
306static void dynbuf_init(DynBuf *b) {
307 b->data = NULL;
308 b->len = 0;
309 b->cap = 0;
310}
311
312static bool dynbuf_ensure(DynBuf *b, int needed) {
313 if (b->len + needed <= b->cap) {

Callers 1

rec_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected