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

Function EndianLittleToBig64

Kernel/include/endian.h:13–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11}
12
13static inline uint64_t EndianLittleToBig64(uint64_t val){
14 return __builtin_bswap64(val);
15}
16
17static inline uint16_t EndianBigToLittle16(uint16_t val){
18 return __builtin_bswap16(val);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected