(s: &str)
| 15 | /// form (e.g., "c:\openssh\bin\sftp.exe") for comparison and storage. |
| 16 | #[cfg(windows)] |
| 17 | fn unescape_backslashes(s: &str) -> String { |
| 18 | s.replace("\\\\", "\\") |
| 19 | } |
| 20 | |
| 21 | #[cfg(not(windows))] |
| 22 | fn unescape_backslashes(s: &str) -> String { |
no outgoing calls
no test coverage detected