mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 11:45:05 +01:00
8 lines
187 B
Rust
8 lines
187 B
Rust
#[no_mangle]
|
|
pub(crate) unsafe extern "C" fn memset(ptr: *mut u8, constant: u8, len: usize) {
|
|
for i in 0..len {
|
|
unsafe {
|
|
*ptr.add(i) = constant;
|
|
}
|
|
}
|
|
}
|