Rename Buttress to Halibut. I _think_ I've caught everything in this pass.
[sgt/halibut] / help.c
1 /*
2 * help.c: usage instructions
3 */
4
5 #include <stdio.h>
6 #include "halibut.h"
7
8 static char *helptext[] = {
9 "FIXME: help text goes here",
10 NULL
11 };
12
13 static char *usagetext[] = {
14 "FIXME: usage text goes here",
15 NULL
16 };
17
18 void help(void) {
19 char **p;
20 for (p = helptext; *p; p++)
21 puts(*p);
22 }
23
24 void usage(void) {
25 char **p;
26 for (p = usagetext; *p; p++)
27 puts(*p);
28 }
29
30 void showversion(void) {
31 printf("Halibut, %s\n", version);
32 }