(input: &str)
| 909 | } |
| 910 | |
| 911 | fn default_path_input(input: &str) -> &str { |
| 912 | let trimmed = input.trim(); |
| 913 | if trimmed.is_empty() { |
| 914 | "." |
| 915 | } else { |
| 916 | trimmed |
| 917 | } |
| 918 | } |
| 919 | |
| 920 | fn has_windows_path_prefix(input: &str) -> bool { |
| 921 | let bytes = input.as_bytes(); |
no test coverage detected