Files
ksOS/Kernel/Include/Lib/Bytes.h
T

11 lines
210 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);
}