| 133 | /* ── Helper: check if string contains substring ───────────── */ |
| 134 | |
| 135 | static bool str_contains(const char *s, const char *sub) { |
| 136 | return strstr(s, sub) != NULL; |
| 137 | } |
| 138 | |
| 139 | /* ── Git global excludes resolution ───────────────────────────── */ |
| 140 |
no outgoing calls
no test coverage detected