void SwapLong(long *x, long *y) { long temp; temp = *x; *x = *y; *y = temp; }