help.c

来自「nsis是一个流传比较广的程序安装和解安装封装软件」· 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 + -
显示快捷键?