11 lines
457 B
C
11 lines
457 B
C
#ifndef COMPRESSOR_H
|
|
#define COMPRESSOR_H
|
|
|
|
// Функції компресії та декомпресії для двох алгоритмів
|
|
int compress_1(const char* input_file_name, const char* output_file_name);
|
|
int decompress_1(const char* input_file_name, const char* output_file_name);
|
|
int compress_2(const char* input_file_name, const char* output_file_name);
|
|
int decompress_2(const char* input_file_name, const char* output_file_name);
|
|
|
|
#endif
|