// Copyright 2014 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code by Matt McCutchen, see the LICENSE file. #include <ostream> #include "BigIntegerUtils.hh" #include "BigUnsignedInABase.hh" std::string bigUnsignedToString(const BigUnsigned &x) { … } std::string bigIntegerToString(const BigInteger &x) { … } BigUnsigned stringToBigUnsigned(const std::string &s) { … } BigInteger stringToBigInteger(const std::string &s) { … } std::ostream &operator <<(std::ostream &os, const BigUnsigned &x) { … } std::ostream &operator <<(std::ostream &os, const BigInteger &x) { … }