// Utility routines which will be called by other routines. // See utils.h #include "utils.h" int doubleIt(int x){ return 2*x; } int halfIt(int x){ return x/2; }