/* Factoring.h */

#ifndef Included_Factoring_h
#define Included_Factoring_h

/* Factoring module depends on */
/* MiscInfo.h */
/* Audit */
/* Debug */
/* Definitions */

/* find the common factors of two numbers, using Euclid's algorithm.  the product */
/* of the common factors is returned (i.e. greatest common factor). */
unsigned long					FindCommonFactors(unsigned long Left, unsigned long Right);

#endif
