lzw-assignment/src/uncompress.hh

13 lines
285 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>
2018-06-17 02:09:25 +00:00
std::basic_string<unsigned char> lzw_uncompress(std::vector<std::uint16_t> &&);
2018-06-17 02:09:25 +00:00
void uncompress(const std::string &, const char *);
#endif /* LZW_SRC_UNCOMPRESS_H_ */