* Returns true if the path ends with components, considering only complete path * components, and false otherwise. */
| 1312 | * components, and false otherwise. |
| 1313 | */ |
| 1314 | int ends_with_path_components(const char *path, const char *components) |
| 1315 | { |
| 1316 | return stripped_path_suffix_offset(path, components) != -1; |
| 1317 | } |
| 1318 | |
| 1319 | /* |
| 1320 | * If path ends with suffix (complete path components), returns the |
no test coverage detected