summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/divide.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/build/botan/divide.h')
-rw-r--r--botan/build/botan/divide.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/botan/build/botan/divide.h b/botan/build/botan/divide.h
new file mode 100644
index 0000000..9445b13
--- /dev/null
+++ b/botan/build/botan/divide.h
@@ -0,0 +1,19 @@
+/*
+* 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 <botan/bigint.h>
+
+namespace Botan {
+
+void BOTAN_DLL divide(const BigInt&, const BigInt&, BigInt&, BigInt&);
+
+}
+
+#endif