// Copyright 2024 xensik. All rights reserved. // // Use of this source code is governed by a GNU GPLv3 license // that can be found in the LICENSE file. #pragma once namespace xsk::utils { class zlib { public: static auto compress(std::vector const& data) -> std::vector; static auto decompress(std::vector const& data, u32 length) -> std::vector; }; } // namespace xsk::utils