1#[inline] 2pub unsafe fn writeu_8(target: *mut u8, value: u8) -> *mut u8 { 3 *target = value; 4 target.add(core::mem::size_of::<u8>()) 5}