6 lines
189 B
C++
6 lines
189 B
C++
#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);
|