pub unsafe extern "C" fn memset(
ptr: *mut i32,
value: i32,
length: u32,
) -> *mut i32Expand description
Set all bytes in a region of memory (with length length, starting from ptr) to value.
As far as I can tell, behaves like C memset().