Files
itgmania212121/extern/IXWebSocket-11.3.2/ixwebsocket/IXGzipCodec.h
T

16 lines
305 B
C++
Raw Normal View History

2021-09-11 23:21:34 +02:00
/*
* 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