void something(int* a, int* b) { int tmp = *a; *a = *b + 1; *b = tmp; }