void tripler(int *x) { *x = *x * 3; } int doubler(int x) { return x * 2; }