lzw-assignment/src/compress.hh

15 lines
311 B
C++
Raw Normal View History

2018-04-05 18:47:07 +02:00
#ifndef LZW_SRC_COMPRESS_H_
#define LZW_SRC_COMPRESS_H_
#include "common.hh"
#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
std::vector<std::vector<std::uint16_t>>
lzw_compress(std::basic_string<unsigned char> &&);
void compress(const std::string &, const char *);
2018-04-05 18:47:07 +02:00
#endif /* LZW_SRC_COMPRESS_H_ */