2018-06-10 21:21:06 +02:00
|
|
|
#ifndef LZW_SRC_UNCOMPRESS_H_
|
|
|
|
#define LZW_SRC_UNCOMPRESS_H_
|
|
|
|
|
2018-06-11 16:34:35 +02:00
|
|
|
#include <memory>
|
2018-06-10 21:21:06 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2018-06-21 17:38:51 +02:00
|
|
|
std::basic_string<unsigned char> lzw_uncompress(std::vector<std::uint16_t> &&);
|
2018-06-10 21:21:06 +02:00
|
|
|
|
2018-06-21 17:38:51 +02:00
|
|
|
void uncompress(const std::string &, const char *);
|
|
|
|
|
|
|
|
void uncompress_chunk(FILE *, FILE *);
|
2018-06-10 21:21:06 +02:00
|
|
|
|
|
|
|
#endif /* LZW_SRC_UNCOMPRESS_H_ */
|