(include_path: &str)
| 2451 | } |
| 2452 | |
| 2453 | fn is_relative_include_path(include_path: &str) -> bool { |
| 2454 | include_path.starts_with("./") || include_path.starts_with("../") |
| 2455 | } |
| 2456 | |
| 2457 | fn header_exists_for_file(file_path: &str, include_path: &str) -> bool { |
| 2458 | if is_relative_include_path(include_path) || is_external_sdk_header(include_path) { |
no test coverage detected