From d2f149a18a6a9405d0efc58bb0f244278f2c96d0 Mon Sep 17 00:00:00 2001 From: Kozar Date: Sat, 14 Dec 2024 13:20:04 +0000 Subject: [PATCH] Update sk1/compressor.h --- sk1/compressor.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sk1/compressor.h b/sk1/compressor.h index e69de29..84e3f83 100644 --- a/sk1/compressor.h +++ b/sk1/compressor.h @@ -0,0 +1,10 @@ +#ifndef COMPRESSOR_H +#define COMPRESSOR_H + +#define BUFFER_SIZE 1024 +#define LZ78_DICT_SIZE 256 + +int compress(const char* input_file_name, const char* output_file_name); +int decompress(const char* input_file_name, const char* output_file_name); + +#endif // COMPRESSOR_H