Files
ksOS/Kernel/Include/Lib/Bytes.h
T
2026-04-26 10:51:53 +04:00

15 lines
312 B
C

#pragma once
#include <Types.h>
static inline UInt32 BytesSwap32(UInt32 value) {
return __builtin_bswap32(value);
}
static inline UInt64 BytesSwap64(UInt64 value) {
return __builtin_bswap64(value);
}
static inline UInt64 Merge32To64(UInt32 low, UInt32 high) {
return ((UInt64)high << 32) | low;
}