1 2 3 4 5 6 7 8
#[inline] pub unsafe fn trimzero(mut end: *mut core::ffi::c_char) -> *mut core::ffi::c_char { while *end.offset(-1) == b'0' as core::ffi::c_char { end = end.offset(-1); } end }