home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / 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.