home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume27
/
conv123
/
part01
/
swapb.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-09-05
|
152 b
|
14 lines
# include <stdio.h>
# include "swapb.h"
main()
{
int j;
unsigned short i;
scanf("%x",&j);
i = (int)j;
printf("i = %4.4x\n",swapb(i));
return;
}