8#include "../byte_string.hpp"
12namespace hi::inline
v1 {
14bstring zlib_decompress(std::span<std::byte const> bytes,
std::size_t max_size = 0x01000000);
16inline bstring zlib_decompress(std::filesystem::path
const &path,
std::size_t max_size = 0x01000000)
18 return zlib_decompress(as_span<std::byte const>(file_view(path)), max_size);
Defines the file_view class.
DOXYGEN BUG.
Definition algorithm.hpp:15