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

Function cbm_pkg_entries_init

src/pipeline/pass_pkgmap.c:98–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96/* ── Per-worker collection ─────────────────────────────────────── */
97
98void cbm_pkg_entries_init(cbm_pkg_entries_t *e) {
99 e->items = NULL;
100 e->count = 0;
101 e->cap = 0;
102}
103
104static void pkg_entries_push(cbm_pkg_entries_t *e, char *pkg_name, char *entry_rel) {
105 if (e->count >= e->cap) {

Callers 3

test_pipeline.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected