2025-05-04 13:32:07 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2025-12-06 21:23:59 +01:00
|
|
|
#include <ctrff/types.hpp>
|
2025-05-04 13:32:07 +02:00
|
|
|
|
|
|
|
|
namespace ctrff {
|
|
|
|
|
namespace LZ11 {
|
2025-12-06 21:23:59 +01:00
|
|
|
CTRFF_API std::vector<ctrff::u8> Compress(const std::vector<ctrff::u8>& in);
|
2026-01-03 01:54:30 +01:00
|
|
|
CTRFF_API std::vector<ctrff::u8> Decompress(const std::vector<ctrff::u8>& in);
|
|
|
|
|
} // namespace LZ11
|
2025-05-04 13:32:07 +02:00
|
|
|
} // namespace ctrff
|