1#[macro_export] 2macro_rules! cstr { 3 ($str: expr) => { format!("{}\0", $str).as_ptr() as *const i8 } 4}