help.c
来自「NullSofts criptable install system2.28源代」· C语言 代码 · 共 24 行
C
24 行
/*
* help.c: usage instructions
*/
#include <stdio.h>
#include "halibut.h"
static char *usagetext[] = {
"halibut.exe file1 [file2 ...]",
NULL
};
void usage(void)
{
char **p;
for (p = usagetext; *p; p++)
puts(*p);
}
void showversion(void)
{
printf("Halibut, %s\n", version);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?