aboutsummaryrefslogtreecommitdiff
path: root/Занимательное программирование/5/2_grey/grey.hpp
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-02-13 22:03:01 +0100
committerEugen Wissner <belka@caraus.de>2026-02-13 22:03:01 +0100
commit82ae29cb8a59a1e093190d14f8c5097658545a12 (patch)
tree9ebdb8652b4cdb7a073890d018136fbf868870fd /Занимательное программирование/5/2_grey/grey.hpp
parent518590d59512143ff279e98aa16c9b956f4b8699 (diff)
downloadbook-exercises-82ae29cb8a59a1e093190d14f8c5097658545a12.tar.gz
Добавлена вторая задача пятой главы
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);