usaa25/sk1/compressor.h
2026-01-21 00:03:03 +01:00

8 lines
145 B
C

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