lzw-assignment/src/uncompress.hh

14 lines
284 B
C++
Raw Normal View History

#ifndef LZW_SRC_UNCOMPRESS_H_
#define LZW_SRC_UNCOMPRESS_H_
2018-06-11 14:34:35 +00:00
#include <memory>
#include <string>
#include <vector>
std::basic_string<unsigned char>
lzw_uncompress(std::vector<std::uint16_t> &&);
void uncompress(const std::string &, const char*);
#endif /* LZW_SRC_UNCOMPRESS_H_ */