switch to compression with limit at 30 MB

This commit is contained in:
Lion Kortlepel
2024-06-22 22:48:00 +02:00
parent e0e2607632
commit f2b34543f9
5 changed files with 68 additions and 54 deletions

View File

@@ -6,6 +6,8 @@
/// Created by Anonymous275 on 7/24/2020
///
#pragma once
#include <string>
std::string Comp(std::string Data);
std::string DeComp(std::string Compressed);
#include <span>
#include <vector>
std::vector<char> Comp(std::span<char> input);
std::vector<char> DeComp(std::span<char> input);