Update sk1/compressor.h
This commit is contained in:
parent
f003e6d1c9
commit
d2f149a18a
@ -0,0 +1,10 @@
|
||||
#ifndef COMPRESSOR_H
|
||||
#define COMPRESSOR_H
|
||||
|
||||
#define BUFFER_SIZE 1024
|
||||
#define LZ78_DICT_SIZE 256
|
||||
|
||||
int compress(const char* input_file_name, const char* output_file_name);
|
||||
int decompress(const char* input_file_name, const char* output_file_name);
|
||||
|
||||
#endif // COMPRESSOR_H
|
Loading…
Reference in New Issue
Block a user