/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/rest.h
28 строк
789 B
MarcoFalke
scripted-diff: [doc] Unify stale copyright headers
17 дек 2025, 00:21
17 дек 2025, 00:21
fa5f297
Код
Авторство
О чём код?
// 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_REST_H #define BITCOIN_REST_H #include <string> enum class RESTResponseFormat { UNDEF, BINARY, HEX, JSON, }; /** * Parse a URI to get the data format and URI without data format * and query string. * * @param[out] param The strReq without the data format string and * without the query string (if any). * @param[in] strReq The URI to be parsed. * @return RESTResponseFormat that was parsed from the URI. */ RESTResponseFormat ParseDataFormat(std::string& param, const std::string& strReq); #endif // BITCOIN_REST_H