#ifndef COMPRESSOR_H #define COMPRESSOR_H /* Komprimuje vstupný súbor do výstupného */ void compress_file(const char *input, const char *output); /* Dekomprimuje vstupný súbor do výstupného */ void decompress_file(const char *input, const char *output); #endif