X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/blobdiff_plain/26a5f52b24d9c9733139a6cf29647f1de7915a56..2301f99c6175d543626d61c0bda90e80f85e7eac:/BigIntegerUtils.cc diff --git a/BigIntegerUtils.cc b/BigIntegerUtils.cc index ea00ed2..87eb50b 100644 --- a/BigIntegerUtils.cc +++ b/BigIntegerUtils.cc @@ -1,15 +1,11 @@ -/* -* Matt McCutchen's Big Integer Library -*/ - #include "BigIntegerUtils.hh" #include "BigUnsignedInABase.hh" /* -* This file includes: -* (1) `std::string <=> BigUnsigned/BigInteger' conversion routines easier than `BigUnsignedInABase' -* (2) << and >> operators for BigUnsigned/BigInteger, std::istream/std::ostream -*/ + * This file includes: + * (1) `std::string <=> BigUnsigned/BigInteger' conversion routines easier than `BigUnsignedInABase' + * (2) << and >> operators for BigUnsigned/BigInteger, std::istream/std::ostream + */ std::string easyBUtoString(const BigUnsigned &x) { return std::string(BigUnsignedInABase(x, 10));