12 lines
269 B
C
12 lines
269 B
C
|
#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
|
||
|
|