Simple substring search helper */
| 934 | |
| 935 | /* Simple substring search helper */ |
| 936 | static bool str_contains(const char *haystack, const char *needle) { |
| 937 | return strstr(haystack, needle) != NULL; |
| 938 | } |
| 939 | |
| 940 | static bool has_objc_markers(const char *buf) { |
| 941 | return str_contains(buf, "@interface") || str_contains(buf, "@implementation") || |
no outgoing calls
no test coverage detected