IXWebSocket/ixwebsocket/IXGzipCodec.h
2020-09-28 10:19:27 -07:00

16 lines
305 B
C++

/*
* IXGzipCodec.h
* Author: Benjamin Sergeant
* Copyright (c) 2020 Machine Zone, Inc. All rights reserved.
*/
#pragma once
#include <string>
namespace ix
{
std::string gzipCompress(const std::string& str);
bool gzipDecompress(const std::string& in, std::string& out);
} // namespace ix