aboutsummaryrefslogtreecommitdiff
path: root/src/util/url.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-10-14 13:55:53 +0800
committerfanquake <fanquake@gmail.com>2022-10-31 10:17:04 +0000
commit3a0b352c63db543833e0f919a004cf2c5093fe9c (patch)
tree039448fe79ddaa2b74cc23629238f01ee181523e /src/util/url.h
parent058eb69ce47c17205a41fc667ce66429f09a332a (diff)
downloadbitcoin-3a0b352c63db543833e0f919a004cf2c5093fe9c.tar.xz
refactor: move url.h/cpp from lib util to lib common
Diffstat (limited to 'src/util/url.h')
-rw-r--r--src/util/url.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/util/url.h b/src/util/url.h
deleted file mode 100644
index 5a7b11fa04..0000000000
--- a/src/util/url.h
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (c) 2015-2020 The Bitcoin Core developers
-// Distributed under the MIT software license, see the accompanying
-// file COPYING or http://www.opensource.org/licenses/mit-license.php.
-
-#ifndef BITCOIN_UTIL_URL_H
-#define BITCOIN_UTIL_URL_H
-
-#include <string>
-
-using UrlDecodeFn = std::string(const std::string& url_encoded);
-UrlDecodeFn urlDecode;
-extern UrlDecodeFn* const URL_DECODE;
-
-#endif // BITCOIN_UTIL_URL_H