aboutsummaryrefslogtreecommitdiff
path: root/C/SwapBytes.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--C/SwapBytes.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/C/SwapBytes.h b/C/SwapBytes.h
new file mode 100644
index 0000000..d442467
--- /dev/null
+++ b/C/SwapBytes.h
@@ -0,0 +1,17 @@
1/* SwapBytes.h -- Byte Swap conversion filter
22023-04-02 : Igor Pavlov : Public domain */
3
4#ifndef ZIP7_INC_SWAP_BYTES_H
5#define ZIP7_INC_SWAP_BYTES_H
6
7#include "7zTypes.h"
8
9EXTERN_C_BEGIN
10
11void z7_SwapBytes2(UInt16 *data, size_t numItems);
12void z7_SwapBytes4(UInt32 *data, size_t numItems);
13void z7_SwapBytesPrepare(void);
14
15EXTERN_C_END
16
17#endif