summaryrefslogtreecommitdiff
path: root/help.c
diff options
context:
space:
mode:
Diffstat (limited to 'help.c')
-rw-r--r--help.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/help.c b/help.c
index e31f784..8db2859 100644
--- a/help.c
+++ b/help.c
@@ -5,7 +5,7 @@
#include <stdio.h>
#include "halibut.h"
-static char *helptext[] = {
+static const char *const helptext[] = {
"usage: halibut [options] files",
"options: --text[=filename] generate plain text output",
" --html[=filename] generate XHTML output",
@@ -24,19 +24,19 @@ static char *helptext[] = {
NULL
};
-static char *usagetext[] = {
+static const char *const usagetext[] = {
"usage: halibut [--format[=filename]] [options] file.but [file.but...]",
NULL
};
void help(void) {
- char **p;
+ const char *const *p;
for (p = helptext; *p; p++)
puts(*p);
}
void usage(void) {
- char **p;
+ const char *const *p;
for (p = usagetext; *p; p++)
puts(*p);
}