aboutsummaryrefslogtreecommitdiff
path: root/Занимательное программирование/5/2_grey/grey.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Занимательное программирование/5/2_grey/grey.hpp')
-rw-r--r--Занимательное программирование/5/2_grey/grey.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Занимательное программирование/5/2_grey/grey.hpp b/Занимательное программирование/5/2_grey/grey.hpp
new file mode 100644
index 0000000..8f1d054
--- /dev/null
+++ b/Занимательное программирование/5/2_grey/grey.hpp
@@ -0,0 +1,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);