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

Function has_objc_markers

src/discover/language.c:940–946  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

938}
939
940static bool has_objc_markers(const char *buf) {
941 return str_contains(buf, "@interface") || str_contains(buf, "@implementation") ||
942 str_contains(buf, "@protocol") || str_contains(buf, "@property") ||
943 str_contains(buf, "#import") || str_contains(buf, "@selector") ||
944 str_contains(buf, "@encode") || str_contains(buf, "@synthesize") ||
945 str_contains(buf, "@dynamic");
946}
947
948static bool has_magma_end_markers(const char *buf) {
949 return str_contains(buf, "end function;") || str_contains(buf, "end procedure;") ||

Callers 1

cbm_disambiguate_mFunction · 0.85

Calls 1

str_containsFunction · 0.70

Tested by

no test coverage detected