(v: u64)
| 12 | |
| 13 | #[unsafe(no_mangle)] |
| 14 | extern "C" fn c_u64_to_le_bytes(v: u64) -> LeanByteArray<LeanOwned> { |
| 15 | LeanByteArray::from_bytes(&v.to_le_bytes()) |
| 16 | } |
| 17 | |
| 18 | #[unsafe(no_mangle)] |
| 19 | extern "C" fn c_usize_to_le_bytes(v: usize) -> LeanByteArray<LeanOwned> { |
nothing calls this directly
no test coverage detected