Skip to main content

luaur_code_gen/functions/
byteswap.rs

1#[inline]
2pub fn byteswap(a: u64) -> u64 {
3    a.swap_bytes()
4}