Files
rtorrent/src/utils/base64.h
T
2026-06-04 06:37:01 +09:00

18 lines
329 B
C++

#ifndef RTORRENT_UTILS_BASE64_H
#define RTORRENT_UTILS_BASE64_H
#include <optional>
#include <string>
#include <vector>
#include <torrent/exceptions.h>
namespace utils {
// TODO: Deprecate.
std::string remove_newlines(const std::string& str);
std::string decode_base64(const std::string& input);
} // namespace utils
#endif