mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
13 lines
197 B
C++
13 lines
197 B
C++
#pragma once
|
|
|
|
namespace kutil {
|
|
|
|
constexpr uint32_t
|
|
byteswap(uint32_t x)
|
|
{
|
|
return ((x >> 24) & 0x000000ff) | ((x >> 8) & 0x0000ff00)
|
|
| ((x << 8) & 0x00ff0000) | ((x << 24) & 0xff000000);
|
|
}
|
|
|
|
}
|