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

Function ub_init

internal/cbm/iris_export_xml.c:119–125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119static void ub_init(UdlBuf *b, CBMArena *arena) {
120 b->buf = (char *)cbm_arena_alloc(arena, BUF_CAP);
121 b->pos = 0;
122 b->cap = BUF_CAP;
123 if (b->buf)
124 b->buf[0] = '\0';
125}
126static void ub_app(UdlBuf *b, const char *s) {
127 if (!b->buf || !s)
128 return;

Callers 1

transcode_classFunction · 0.85

Calls 1

cbm_arena_allocFunction · 0.70

Tested by

no test coverage detected