#[unsafe(no_mangle)]pub unsafe extern "C" fn lv_strcpy(
destination: *mut c_char,
source: *const c_char,
) -> *mut c_charExpand description
Copy a string from source to destination
ยงSafety
This function is unsafe because it dereferences raw pointers.