| 13 | |
| 14 | #ifdef _MSC_VER |
| 15 | inline uint32_t byteswap(uint32_t val) { |
| 16 | return _byteswap_ulong(val); |
| 17 | } |
| 18 | #else |
| 19 | constexpr uint32_t byteswap(uint32_t val) { |
| 20 | return __builtin_bswap32(val); |
nothing calls this directly
no outgoing calls
no test coverage detected