diff options
Diffstat (limited to 'src/Common/Endian.c')
-rw-r--r-- | src/Common/Endian.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Common/Endian.c b/src/Common/Endian.c index 46f6e1bd..cea24d09 100644 --- a/src/Common/Endian.c +++ b/src/Common/Endian.c @@ -43,17 +43,3 @@ uint64 MirrorBytes64 (uint64 x) } #endif -void -LongReverse (unsigned __int32 *buffer, unsigned byteCount) -{ - unsigned __int32 value; - - byteCount /= sizeof (unsigned __int32); - while (byteCount--) - { - value = *buffer; - value = ((value & 0xFF00FF00L) >> 8) | \ - ((value & 0x00FF00FFL) << 8); - *buffer++ = (value << 16) | (value >> 16); - } -} |