pub fn add_start_file_separator_build_in_place(s: &mut String)
Expand description

Add a starting FILE_SEPARATOR_ON_WORKSTATION into a string.

let mut s = String::from("path");

slash_formatter::add_start_file_separator_build_in_place(&mut s);

assert_eq!(concat!(slash_formatter::file_separator_build!(), "path"), s);