9 lines
185 B
C++
Executable file
9 lines
185 B
C++
Executable file
#pragma once
|
|
#include <string>
|
|
|
|
namespace fc {
|
|
|
|
std::string smaz_compress( const std::string& in );
|
|
std::string smaz_decompress( const std::string& compressed );
|
|
|
|
} // namespace fc
|