fn big(x: anytype) @TypeOf(x)
fn big(x: anytype) @TypeOf(x) { return switch (native_endian) { .big => x, .little => @byteSwap(x), }; }