lzw-assignment/src/compress.hh

15 lines
325 B
C++
Raw Normal View History

2018-04-05 16:47:07 +00:00
#ifndef LZW_SRC_COMPRESS_H_
#define LZW_SRC_COMPRESS_H_
#include "common.hh"
#include <iostream>
2018-04-29 12:13:14 +00:00
#include <thread>
2018-06-21 15:38:51 +00:00
#include <vector>
2018-04-05 16:47:07 +00:00
2019-08-19 14:40:13 +00:00
[[nodiscard]] std::vector<std::vector<std::uint16_t>>
lzw_compress(std::basic_string<unsigned char> &&);
void compress(const std::string &, const char *);
2018-04-05 16:47:07 +00:00
#endif /* LZW_SRC_COMPRESS_H_ */