(value: &str)
| 883 | } |
| 884 | |
| 885 | fn quote_windows_command_arg(value: &str) -> String { |
| 886 | format!("\"{}\"", value.replace('"', "\\\"")) |
| 887 | } |
| 888 | |
| 889 | fn quote_posix_command_arg(value: &str) -> String { |
| 890 | format!("'{}'", value.replace('\'', "'\\''")) |
no outgoing calls
no test coverage detected