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