mirror of
https://github.com/Hizenberg469/Compression-Algorithm.git
synced 2026-04-20 02:12:26 +03:00
11 lines
252 B
C
11 lines
252 B
C
#ifndef _MAIN_H
|
|
#define _MAIN_H
|
|
|
|
void CompressFile(FILE* input, BIT_FILE* output, int argc, char* argv[]);
|
|
void ExpandFile(BIT_FILE* input, FILE* output, int argc, char* argv[]);
|
|
|
|
extern char* Usage;
|
|
extern char* CompressionName;
|
|
|
|
|
|
#endif /* _MAIN_H */ |