/* * help - give program help */ #include help(argv) char** argv; { fprintf(stderr, "%s: HELP:\n", argv[0]); fprintf(stderr, "\n"); fprintf(stderr, " genHTML - template filter\n"); fprintf(stderr, "\n"); fprintf(stderr, " >>> This is where to put some friendly help on the why and wherefore of\n"); fprintf(stderr, " this program. For example:\n"); fprintf(stderr, "\n"); fprintf(stderr, " The program parses its command line flags to read a Boolean, integer\n"); fprintf(stderr, " and float into global parameter variables. If the Debug flag is\n"); fprintf(stderr, " selected it writes the values of its parameters to standard error.\n"); fprintf(stderr, "\n"); fprintf(stderr, " It then reads a floating point number and an integer, both in\n"); fprintf(stderr, " ASCII text, from standard input and then writes them to standard output,\n"); fprintf(stderr, " as text preceded by variable names.\n"); fprintf(stderr, "\n"); fprintf(stderr, " ABS 4/10/99\n"); fprintf(stderr, "\n"); } /* end of help */