(v: u32)
| 7 | |
| 8 | #[unsafe(no_mangle)] |
| 9 | extern "C" fn c_u32_to_le_bytes(v: u32) -> LeanByteArray<LeanOwned> { |
| 10 | LeanByteArray::from_bytes(&v.to_le_bytes()) |
| 11 | } |
| 12 | |
| 13 | #[unsafe(no_mangle)] |
| 14 | extern "C" fn c_u64_to_le_bytes(v: u64) -> LeanByteArray<LeanOwned> { |
nothing calls this directly
no test coverage detected