15 lines
522 B
C
15 lines
522 B
C
#ifndef COMPRESSOR_H
|
|
#define COMPRESSOR_H
|
|
|
|
#include <stdio.h>
|
|
|
|
// Function prototypes for Huffman compression and decompression
|
|
void compress_1(const char* input_file_name, const char* output_file_name);
|
|
void decompress_1(const char* input_file_name, const char* output_file_name);
|
|
|
|
// Function prototypes for RLE compression and decompression
|
|
void compress_2(const char* input_file_name, const char* output_file_name);
|
|
void decompress_2(const char* input_file_name, const char* output_file_name);
|
|
|
|
#endif // COMPRESSOR_H
|