(c: &*const c_char)
| 823 | } |
| 824 | |
| 825 | fn c_string_to_string(c: &*const c_char) -> std::result::Result<String, Utf8Error> { |
| 826 | let bytes = unsafe { CStr::from_ptr(c.to_owned()).to_bytes() }; |
| 827 | Ok(std::str::from_utf8(bytes)?.to_string()) |
| 828 | } |
| 829 | fn process_create_args( |
| 830 | argc: c_int, |
| 831 | argv: *const *const c_char, |
no outgoing calls
no test coverage detected