pub unsafe extern "C" fn xila_string_copy_bounded(
destination: *mut c_char,
source: *const c_char,
num: usize,
) -> *mut c_charExpand description
Copy string from source to destination with maximum length
ยงSafety
This function is unsafe because it dereferences raw pointers.