8#include "../byte_string.hpp"
9#include "../file_view.hpp"
12namespace hi::inline v1 {
14bstring zlib_decompress(std::span<std::byte const> bytes,
std::size_t max_size = 0x01000000);
16inline bstring zlib_decompress(URL
const &url,
std::size_t max_size = 0x01000000)
18 return zlib_decompress(file_view(url), max_size);