/*------------------------------------------------------------------*/ /* mymath.h (Version 3) */ /*------------------------------------------------------------------*/ int gcd(int iFirst, int iSecond); /* Return the greatest common divisor of iFirst and iSecond. */ int lcm(int iFirst, int iSecond); /* Return the least common multiple of iFirst and iSecond. */