home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Compilers⁄Interps
/
GCC-2.3.3r12
/
Tests
/
swap.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
Text File
|
1993-03-08
|
182 b
|
10 lines
|
[
TEXT/MPS
]
swapit(unsigned short n1, unsigned short n2, unsigned short ix)
{
unsigned short range;
unsigned long rslt;
range = (n1 - n2);
rslt = (range * ix) >> 16;
return (n1 + rslt);
}