mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 08:02:32 +00:00
051ee8e626
See #359
21 lines
497 B
Zig
21 lines
497 B
Zig
const mem = @import("mem.zig");
|
|
const builtin = @import("builtin");
|
|
|
|
pub fn swapIfLe(comptime T: type, x: T) -> T {
|
|
swapIf(false, T, x)
|
|
}
|
|
|
|
pub fn swapIfBe(comptime T: type, x: T) -> T {
|
|
swapIf(true, T, x)
|
|
}
|
|
|
|
pub fn swapIf(is_be: bool, comptime T: type, x: T) -> T {
|
|
if (builtin.is_big_endian == is_be) swap(T, x) else x
|
|
}
|
|
|
|
pub fn swap(comptime T: type, x: T) -> T {
|
|
var buf: [@sizeOf(T)]u8 = undefined;
|
|
mem.writeInt(buf[0..], x, false);
|
|
return mem.readInt(buf, T, true);
|
|
}
|