home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PCTV1N6.ZIP / SWAPMAC.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-01-21  |  77 b   |  3 lines

  1. #define SWAP(type, x, y) 
  2.   {##type temp; temp = (x); x = (y); y = temp;}
  3.