mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 02:02:30 +00:00
18 lines
329 B
C++
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
|