1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or https://www.opensource.org/licenses/mit-license.php .
7 * Money parsing/formatting utilities.
9 #ifndef BITCOIN_UTILMONEYSTR_H
10 #define BITCOIN_UTILMONEYSTR_H
17 std::string FormatMoney(const CAmount& n);
18 bool ParseMoney(const std::string& str, CAmount& nRet);
19 bool ParseMoney(const char* pszIn, CAmount& nRet);
21 #endif // BITCOIN_UTILMONEYSTR_H