macro_rules! os { ($string:literal) => { ... }; }
Creates an OS string from a literal string ("whatever").
"whatever"
For an unsafe version of this macro that permits invalid UTF-8, see osb. Note that osb causes immediate Undefined Behavior with invalid UTF-8 on on Windows.
osb