11 lines
272 B
C
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
|