Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void naiveSwap( int *x, int *y )
  2. {
  3.     int temp = *x;
  4.     *x = *y;
  5.     *y = temp;
  6. }