home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / csource / swap.c < prev   
Encoding:
Text File  |  1996-12-24  |  83 b   |  8 lines

  1. void swap(int *x, int *y)
  2. {
  3.    int tmp;
  4.    
  5.    *x = *y;
  6.    tmp = *x;
  7.    *y = tmp;