5 * txt2html - Takes a string and converts it to HTML.
6 * @string: The string to HTMLize.
8 * Takes a string and escapes any HTML entities.
10 char *txt2html(const char *string);
13 * start_html - Start HTML output.
14 * @title: The title for the HTML.
16 * Takes a title string and starts HTML output, including the
17 * Content-Type header all the way up to <BODY>.
19 void start_html(const char *title);
22 * end_html - End HTML output.
24 * Ends HTML output - closes the BODY and HTML tags.
28 char x2c(const char *what);
29 void unescape_url(char *url);
30 char **getcgivars(int argc, char *argv[]);
33 * cleanupcgi - free the memory allocated for our CGI parameters.
34 * @cgivars: The CGI parameter list to free.
36 * Frees up the elements of the CGI parameter array and then frees the
39 void cleanupcgi(char **cgivars);
41 #endif /* __GETCGI_H_ */