/*------------------------------------------------------------------*/ /* intmath.h (Version 3) */ /* Author: Bob Dondero */ /*------------------------------------------------------------------*/ 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. */