blob: 8f1d0546c4d575f07b3df32cf7dc598eea5d90cb (
plain)
1
2
3
4
5
|
#include <filesystem>
#include <vector>
std::vector<std::uint8_t> to_rle(const std::filesystem::path& input);
void from_rle(const std::string& input, const std::filesystem::path& output);
|