home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
prof_c
/
11screen
/
swap_int.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1988-08-11
|
218 b
|
17 lines
/*
* swap_int -- exchange the values of the two integers
*/
void
swap_int(p1, p2)
register int *p1;
register int *p2;
{
int tmp;
/* exchange the values */
tmp = *p1;
*p1 = *p2;
*p2 = tmp;
}