extern crate libc; use libc::c_char; use std::ffi::CStr; #[no_mangle] pub extern "C" fn how_many_characters(s: *const c_char) -> u32 { let c_str = unsafe ...
確定! 回上一頁