MCPcopy Create free account
hub / github.com/PowerShell/DSC / unescape_backslashes

Function unescape_backslashes

resources/sshdconfig/src/parser.rs:17–19  ·  view source on GitHub ↗
(s: &str)

Source from the content-addressed store, hash-verified

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

Callers 2

parse_arguments_nodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected