This commit is contained in:
2024-04-14 22:18:05 +05:30
parent b89368be70
commit b55c5a4192
8 changed files with 436 additions and 1 deletions

11
clib/main.h Normal file
View File

@@ -0,0 +1,11 @@
#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 */