usaa24/sk1/compressor.h
Bohdan Kapliuk db623c28ad sk1
2025-01-12 15:32:10 +02:00

9 lines
354 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