mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
15 lines
305 B
C++
15 lines
305 B
C++
#ifndef OPENMW_COMPONENTS_MISC_COMPRESSION_H
|
|
#define OPENMW_COMPONENTS_MISC_COMPRESSION_H
|
|
|
|
#include <cstddef>
|
|
#include <vector>
|
|
|
|
namespace Misc
|
|
{
|
|
std::vector<std::byte> compress(const std::vector<std::byte>& data);
|
|
|
|
std::vector<std::byte> decompress(const std::vector<std::byte>& data);
|
|
}
|
|
|
|
#endif
|