usaa25/sk1/compressor.h
2026-01-21 18:22:41 +01:00

11 lines
272 B
C

#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