#ifndef LZW_SRC_UNCOMPRESS_H_ #define LZW_SRC_UNCOMPRESS_H_ #include #include #include #include std::basic_string lzw_uncompress(std::vector &&); void uncompress(const std::string &, const char *); void uncompress_chunk(FILE *, std::ofstream&); #endif /* LZW_SRC_UNCOMPRESS_H_ */