44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
-
+
|
**
** Comment text following COMMAND: through the end of the comment is
** understood to be help text for the command specified. This help
** text is accumulated and a table containing the text for each command
** is generated. That table is used implement the "fossil help" command
** and the "/help" HTTP method.
**
** Multiple occurrances of WEBPAGE: or COMMAND: (but not both) can appear
** Multiple occurrences of WEBPAGE: or COMMAND: (but not both) can appear
** before each function name. In this way, webpages and commands can
** have aliases.
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <assert.h>
|