/* * Division * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_DIVISON_ALGORITHM_H__ #define BOTAN_DIVISON_ALGORITHM_H__ #include namespace Botan { void BOTAN_DLL divide(const BigInt&, const BigInt&, BigInt&, BigInt&); } #endif