8 lines
145 B
C
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
|