1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00
OpenMW/components/misc/compression.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
305 B
C++
Raw Normal View History

#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