1/*
2 * IXGzipCodec.h
3 * Author: Benjamin Sergeant
4 * Copyright (c) 2020 Machine Zone, Inc. All rights reserved.
5 */
6
7#pragma once
8
9#include <string>
10
11namespace ix
12{
13 std::string gzipCompress(const std::string& str);
14 bool gzipDecompress(const std::string& in, std::string& out);
15} // namespace ix
16