2018-04-05 18:47:07 +02:00
|
|
|
#ifndef LZW_SRC_COMPRESS_H_
|
|
|
|
#define LZW_SRC_COMPRESS_H_
|
|
|
|
|
|
|
|
#include "common.hh"
|
2018-04-26 11:54:02 +02:00
|
|
|
#include <iostream>
|
2018-04-29 14:13:14 +02:00
|
|
|
#include <thread>
|
2018-06-21 17:38:51 +02:00
|
|
|
#include <vector>
|
2018-04-05 18:47:07 +02:00
|
|
|
|
2018-06-11 21:02:59 +02:00
|
|
|
std::vector<std::vector<std::uint16_t>>
|
|
|
|
lzw_compress(std::basic_string<unsigned char> &&);
|
2018-05-25 12:00:58 +02:00
|
|
|
|
2018-04-26 13:49:39 +02:00
|
|
|
void compress(const std::string &, const char *);
|
2018-04-10 10:39:41 +02:00
|
|
|
|
2018-04-05 18:47:07 +02:00
|
|
|
#endif /* LZW_SRC_COMPRESS_H_ */
|