Skip to main content

memset

Function memset 

Source
pub unsafe fn memset(dst: *mut u8, byte: u8, n: usize)
Expand description

Fill n bytes starting at dst with byte.

The fastest way to zero-fill or pattern-fill a memory region on the SVM.

ยงSafety

dst must be valid for n bytes.