Merge #12063: [Trivial] Update license year range to 2018
[bitcoinplatinum.git] / src / utilmoneystr.h
blob1cbec498584cefdcf1d646faa0393126edfbc206
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2017 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
6 /**
7 * Money parsing/formatting utilities.
8 */
9 #ifndef BITCOIN_UTILMONEYSTR_H
10 #define BITCOIN_UTILMONEYSTR_H
12 #include <stdint.h>
13 #include <string>
15 #include <amount.h>
17 /* Do not use these functions to represent or parse monetary amounts to or from
18 * JSON but use AmountFromValue and ValueFromAmount for that.
20 std::string FormatMoney(const CAmount& n);
21 bool ParseMoney(const std::string& str, CAmount& nRet);
22 bool ParseMoney(const char* pszIn, CAmount& nRet);
24 #endif // BITCOIN_UTILMONEYSTR_H