⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.h

📁 This is a little console mode utility program which is able to (de-)compress single files with a s
💻 H
字号:
/************************** Start of MAIN.H **************************/

#ifndef _MAIN_H
#define _MAIN_H

#ifdef __STDC__

void CompressFile( FILE *input, BIT_FILE *output, int argc, char *argv[] );
void ExpandFile( BIT_FILE *input, FILE *output, int argc, char *argv[] );

#else   /* __STDC__ */

void CompressFile();
void ExpandFile();

#endif  /* __STDC__ */

extern char *Usage;
extern char *CompressionName;

#endif  /* _MAIN_H */

/*************************** End of MAIN.H ***************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -