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

Function has_function

tests/test_incremental.c:179–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

177}
178
179static int has_function(const char *name_pattern) {
180 char *resp = call_tool("search_graph",
181 "{\"project\":\"%s\",\"label\":\"Function\",\"name_pattern\":\"%s\"}",
182 g_project, name_pattern);
183 int total = count_in_response(resp, "total");
184 free(resp);
185 return total > 0;
186}
187
188static int count_by_label(const char *label) {
189 char *resp =

Callers 1

test_incremental.cFile · 0.85

Calls 2

count_in_responseFunction · 0.85
call_toolFunction · 0.70

Tested by

no test coverage detected