Converts a big-endian integer to host endianness.
pub fn bigToNative(comptime T: type, x: T) T
pub fn bigToNative(comptime T: type, x: T) T { return switch (native_endian) { .little => @byteSwap(x), .big => x, }; }