#ifndef COMPRESSOR_H #define COMPRESSOR_H int compress_file(char *input, char *output); int decompress_file(char *input, char *output); #endif