X-Git-Url: https://mattmccutchen.net/bigint/bigint.git/blobdiff_plain/05780f4b578d6ae054be0b19b8498d32a4f16c60..b9e459aab5aff20564efc14602d214fd4f6a233a:/BigIntegerUtils.cc diff --git a/BigIntegerUtils.cc b/BigIntegerUtils.cc index f7f1cbc..87eb50b 100644 --- a/BigIntegerUtils.cc +++ b/BigIntegerUtils.cc @@ -1,16 +1,11 @@ -/* -* Matt McCutchen's Big Integer Library -* http://mysite.verizon.net/mccutchen/bigint/ -*/ - #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));