#![allow(dead_code, deprecated, unused_variables, unused_mut)] fn read_ne_i16(input: &mut &[u8]) -> i16 { let (int_bytes, rest) = input.split_at(size_of::()); *input = rest; i16::from_ne_bytes(int_bytes.try_into().unwrap()) } fn main() {}