2022-12-24 23:49:50 +00:00
|
|
|
// Copyright (c) 2015-2022 The Bitcoin Core developers
|
2019-04-02 17:03:37 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2022-10-14 13:55:53 +08:00
|
|
|
#ifndef BITCOIN_COMMON_URL_H
|
|
|
|
#define BITCOIN_COMMON_URL_H
|
2019-04-02 17:03:37 -04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2020-04-02 08:35:10 -04:00
|
|
|
using UrlDecodeFn = std::string(const std::string& url_encoded);
|
|
|
|
UrlDecodeFn urlDecode;
|
|
|
|
extern UrlDecodeFn* const URL_DECODE;
|
2019-04-02 17:03:37 -04:00
|
|
|
|
2022-10-14 13:55:53 +08:00
|
|
|
#endif // BITCOIN_COMMON_URL_H
|