1 2 3 4 5
use std::ffi::CString; pub unsafe fn new_c_str(s: &str) -> CString { return CString::new(s).unwrap(); }