Added \s command from upstream and custom \bold and \html commands

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7325 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2021-09-15 01:41:55 +00:00
parent c06f69163d
commit a0d25ea7ed
16 changed files with 143 additions and 171 deletions

View file

@ -5,14 +5,14 @@
#include <stdio.h>
#include "halibut.h"
static char *usagetext[] = {
"halibut.exe file1 [file2 ...]",
static const char *const usagetext[] = {
"halibut [options] file.but [file.but...]",
NULL
};
void usage(void)
{
char **p;
const char *const *p;
for (p = usagetext; *p; p++)
puts(*p);
}