macro_rules! c_str { ($str:expr) => { ... }; }
Creates a new CStr from a string literal.
CStr
The string literal should not contain any NUL bytes.
NUL
const MY_CSTR: &CStr = c_str!("My awesome CStr!");