mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 04:12:42 +00:00
7 lines
165 B
Rust
7 lines
165 B
Rust
pub(crate) fn u16_to_bytes(short: u16) -> [u8; 2] {
|
|
short.to_le_bytes()
|
|
}
|
|
|
|
pub(crate) fn u16_from_bytes(bytes: [u8; 2]) -> u16 {
|
|
u16::from_le_bytes(bytes)
|
|
}
|