18 lines
222 B
C
18 lines
222 B
C
#ifndef SWAP_H
|
|
#define SWAP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned int SwapBBBB(unsigned int i);
|
|
unsigned int SwapBB(unsigned int i);
|
|
unsigned int SwapWW(unsigned int i);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|