
#ifndef _SWAP_H
#define _SWAP_H

#ifdef __cplusplus
extern "C" {
#endif

short int SwapWord(short int Val);
long SwapDword(long Val);

#ifdef __cplusplus
}
#endif

#endif



