aboutsummaryrefslogtreecommitdiff
path: root/C/SwapBytes.h
blob: d442467386e2fc78e0ee84f5f3120706f868961b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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