license_info.h raw
1 // Copyright (c) The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or https://opensource.org/license/mit/.
4
5 #ifndef BITCOIN_COMMON_LICENSE_INFO_H
6 #define BITCOIN_COMMON_LICENSE_INFO_H
7
8 #include <string>
9
10 std::string CopyrightHolders(const std::string& strPrefix);
11
12 /** Returns licensing information (for -version) */
13 std::string LicenseInfo();
14
15 #endif // BITCOIN_COMMON_LICENSE_INFO_H
16