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