Update sk1/compressor.h

This commit is contained in:
Kozar 2024-12-14 13:20:04 +00:00
parent f003e6d1c9
commit d2f149a18a

View File

@ -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