pub use butchunker::ctx::ffi::*; #[unsafe(no_mangle)] #[allow(nonstandard_style)] pub extern "C" fn Butck_FreeString(ptr: *mut libc::c_char) { if ptr.is_null() { return; } unsafe { drop(std::ffi::CString::from_raw(ptr)); } }