/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/common/url.h
20 строк
537 B
Fabian Jahr
common: Add unused UrlEncode function
16 май 2026, 00:07
Не верифицирован
16 май 2026, 00:07
c471c50
Код
Авторство
О чём код?
// Copyright (c) 2015-present 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_COMMON_URL_H #define BITCOIN_COMMON_URL_H #include <string> #include <string_view> /* Decode a URL. * * Notably this implementation does not decode a '+' to a ' '. */ std::string UrlDecode(std::string_view url_encoded); /* Encode a URL. */ std::string UrlEncode(std::string_view str); #endif // BITCOIN_COMMON_URL_H