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

Function cp_callables

tests/test_convergence_probe.c:271–275  ·  view source on GitHub ↗

Sum callable nodes (Function + Method). */

Source from the content-addressed store, hash-verified

269
270/* Sum callable nodes (Function + Method). */
271static int cp_callables(cbm_store_t *store, const char *project) {
272 int fn = cp_count_label(store, project, "Function");
273 int mt = cp_count_label(store, project, "Method");
274 return (fn < 0 ? 0 : fn) + (mt < 0 ? 0 : mt);
275}
276
277/* Diagnostic edge histogram (stderr only, so test output stays clean). */
278static const char *CP_ALL_EDGE_TYPES[] = {

Callers 1

Calls 1

cp_count_labelFunction · 0.85

Tested by

no test coverage detected