usaa24/sk1/compressor.h

11 lines
268 B
C
Raw Normal View History

2024-12-14 13:20:04 +00:00
#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