Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
295
static void dynbuf_init(DynBuf *b) {
296
b->data = NULL;
297
b->len = 0;
298
b->cap = 0;
299
}
300
301
static bool dynbuf_ensure(DynBuf *b, int needed) {
302
if (b->len + needed <= b->cap) {
Callers
1
rec_init
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected