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