/*--------------------------------------------------------------------*/ /* intmath.h (Version 4) */ /* Author: Bob Dondero */ /*--------------------------------------------------------------------*/ #ifndef INTMATH_INCLUDED #define INTMATH_INCLUDED /*--------------------------------------------------------------------*/ /* Return the greatest common divisor of positive integers iFirst and iSecond. */ int IntMath_gcd(int iFirst, int iSecond); /*--------------------------------------------------------------------*/ /* Return the least common multiple of positive integers iFirst and iSecond. */ int IntMath_lcm(int iFirst, int iSecond); #endif