10 lines
119 B
C++
10 lines
119 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace fc
|
|
{
|
|
|
|
std::string zlib_compress(const std::string& in);
|
|
|
|
} // namespace fc
|