]> git.sesse.net Git - s573compress/commitdiff
Optimize file reading; build time is down to just over one second now.
authorSteinar H. Gunderson <steinar+ddr@gunderson.no>
Tue, 3 Dec 2019 21:16:38 +0000 (22:16 +0100)
committerSteinar H. Gunderson <steinar+ddr@gunderson.no>
Tue, 3 Dec 2019 21:16:38 +0000 (22:16 +0100)
compress.h [new file with mode: 0644]

diff --git a/compress.h b/compress.h
new file mode 100644 (file)
index 0000000..4511b53
--- /dev/null
@@ -0,0 +1,6 @@
+#pragma once
+
+#include <string>
+#include <string_view>
+
+std::string compress_konamilz77(const std::string_view input, int *match_to_pos);