aboutsummaryrefslogtreecommitdiff
path: root/C/SwapBytes.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /C/SwapBytes.h
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'C/SwapBytes.h')
-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