X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=getcgi.h;fp=getcgi.h;h=5886996b3e07e052f12712f23485103f99ca7197;hb=200b89a2c66c58c41a27883f021850445698b337;hp=58d009bd9afa302535d51c4be759043dd7cb2de1;hpb=e02c731dfbb288c736f2cd09a9b6df0507c59ddd;p=onak.git diff --git a/getcgi.h b/getcgi.h index 58d009b..5886996 100644 --- a/getcgi.h +++ b/getcgi.h @@ -9,7 +9,23 @@ */ char *txt2html(const char *string); -char x2c(char *what); +/* + * start_html - Start HTML output. + * @title: The title for the HTML. + * + * Takes a title string and starts HTML output, including the + * Content-Type header all the way up to . + */ +void start_html(const char *title); + +/* + * end_html - End HTML output. + * + * Ends HTML output - closes the BODY and HTML tags. + */ +void end_html(void); + +char x2c(const char *what); void unescape_url(char *url); char **getcgivars(int argc, char *argv[]);