(v: u16)
| 2 | |
| 3 | #[unsafe(no_mangle)] |
| 4 | extern "C" fn c_u16_to_le_bytes(v: u16) -> LeanByteArray<LeanOwned> { |
| 5 | LeanByteArray::from_bytes(&v.to_le_bytes()) |
| 6 | } |
| 7 | |
| 8 | #[unsafe(no_mangle)] |
| 9 | extern "C" fn c_u32_to_le_bytes(v: u32) -> LeanByteArray<LeanOwned> { |
nothing calls this directly
no test coverage detected