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

Function has_import

tests/test_extraction.c:43–50  ·  view source on GitHub ↗

Check if any import with the given module path exists. */

Source from the content-addressed store, hash-verified

41
42/* Check if any import with the given module path exists. */
43static int __attribute__((unused)) has_import(CBMFileResult *r, const char *path_substr) {
44 for (int i = 0; i < r->imports.count; i++) {
45 if (r->imports.items[i].module_path &&
46 strstr(r->imports.items[i].module_path, path_substr) != NULL)
47 return 1;
48 }
49 return 0;
50}
51
52/* Count definitions with a given label. */
53static int count_defs_with_label(CBMFileResult *r, const char *label) {

Callers 1

test_extraction.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected