2015-02-16 20:07:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <fc/string.hpp>
|
2016-08-12 22:39:57 +00:00
|
|
|
#ifdef FC_USE_FULL_ZLIB
|
|
|
|
|
# include <fc/filesystem.hpp>
|
|
|
|
|
#endif
|
2015-02-16 20:07:24 +00:00
|
|
|
|
|
|
|
|
namespace fc
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
string zlib_compress(const string& in);
|
2016-08-12 22:39:57 +00:00
|
|
|
#ifdef FC_USE_FULL_ZLIB
|
|
|
|
|
void gzip_compress_file(const path& input_filename, const path& output_filename);
|
|
|
|
|
#endif
|
2015-02-16 20:07:24 +00:00
|
|
|
|
|
|
|
|
} // namespace fc
|