main.h

来自「This is a little console mode utility pr」· C头文件 代码 · 共 25 行

H
25
字号
/************************** 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 + =
减小字号Ctrl + -
显示快捷键?