diff options
Diffstat (limited to '3rdparty/lzma/C/SwapBytes.h')
-rw-r--r-- | 3rdparty/lzma/C/SwapBytes.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3rdparty/lzma/C/SwapBytes.h b/3rdparty/lzma/C/SwapBytes.h new file mode 100644 index 00000000000..d442467386e --- /dev/null +++ b/3rdparty/lzma/C/SwapBytes.h @@ -0,0 +1,17 @@ +/* SwapBytes.h -- Byte Swap conversion filter +2023-04-02 : Igor Pavlov : Public domain */ + +#ifndef ZIP7_INC_SWAP_BYTES_H +#define ZIP7_INC_SWAP_BYTES_H + +#include "7zTypes.h" + +EXTERN_C_BEGIN + +void z7_SwapBytes2(UInt16 *data, size_t numItems); +void z7_SwapBytes4(UInt32 *data, size_t numItems); +void z7_SwapBytesPrepare(void); + +EXTERN_C_END + +#endif |