#ifndef LZW_SRC_COMPRESS_H_ #define LZW_SRC_COMPRESS_H_ #include "common.hh" #include #include #include [[nodiscard]] std::vector> lzw_compress(std::basic_string &&); void compress(const std::string &, const char *); #endif /* LZW_SRC_COMPRESS_H_ */