2024-12-24 15:10:07 +00:00
|
|
|
#ifndef COMPRESSOR_H
|
|
|
|
#define COMPRESSOR_H
|
|
|
|
|
2024-12-24 18:42:31 +00:00
|
|
|
// Функції компресії та декомпресії для двох алгоритмів
|
|
|
|
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);
|
2024-12-24 15:10:07 +00:00
|
|
|
|
2024-12-24 18:42:31 +00:00
|
|
|
#endif
|