int RANGER(int *X, int *Y) { int AIDE; if (*X>*Y) { AIDE = *X; *X = *Y; *Y = AIDE; return 1; } else return 0; }