MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / EndianLittleToBig32

Function EndianLittleToBig32

Kernel/include/endian.h:9–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9static inline uint32_t EndianLittleToBig32(uint32_t val){
10 return __builtin_bswap32(val);
11}
12
13static inline uint64_t EndianLittleToBig64(uint64_t val){
14 return __builtin_bswap64(val);

Callers 1

BigEndianUInt32Class · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected