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

Function get_edge_count

tests/test_incremental.c:168–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166}
167
168static int get_edge_count(void) {
169 cbm_store_t *s = open_store();
170 if (!s)
171 return -1;
172 int c = cbm_store_count_edges(s, g_project);
173 cbm_store_close(s);
174 return c;
175}
176
177static int get_edge_count_by_type(const char *type) {
178 cbm_store_t *s = open_store();

Callers 1

test_incremental.cFile · 0.85

Calls 3

open_storeFunction · 0.85
cbm_store_count_edgesFunction · 0.85
cbm_store_closeFunction · 0.85

Tested by

no test coverage detected