You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/components/misc/compression.hpp

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