defining lzma header
This commit is contained in:
parent
311a9652d4
commit
786941fe69
1 changed files with 9 additions and 0 deletions
9
include/fc/compress/lzma.hpp
Normal file
9
include/fc/compress/lzma.hpp
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
#pragma once
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
namespace fc {
|
||||||
|
|
||||||
|
std::vector<char> lzma_compress( const std::vector<char>& in );
|
||||||
|
std::vector<char> lzma_decompress( const std::vector<char>& compressed );
|
||||||
|
|
||||||
|
} // namespace fc
|
||||||
Loading…
Reference in a new issue