// IntCellSwap.C

void IntCellSwap(int* c1, int* c2)
{
  int temp;
  temp = *c1;
  *c1 = *c2;
  *c2 = temp;
}

