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

Function find_resolved

tests/test_cs_lsp.c:38–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38static int find_resolved(const CBMFileResult *r, const char *callerSub, const char *calleeSub) {
39 for (int i = 0; i < r->resolved_calls.count; i++) {
40 const CBMResolvedCall *rc = &r->resolved_calls.items[i];
41 if (rc->caller_qn && strstr(rc->caller_qn, callerSub) && rc->callee_qn &&
42 strstr(rc->callee_qn, calleeSub))
43 return i;
44 }
45 return -1;
46}
47
48static int require_resolved(const CBMFileResult *r, const char *callerSub, const char *calleeSub) {
49 int idx = find_resolved(r, callerSub, calleeSub);

Callers 2

require_resolvedFunction · 0.70
test_cs_lsp.cFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected