char output[10000]; char *html_header(char *title) { memset(output, 0x0, 10000); char *text = "\n" "
\n" "\n" "
\n" "\"Athena\"\n" "
\n" "
\n"; "\n" "
" "
" "\n" "To the Forum
\n" "\n" "" "
\n" "
\n" "Athena « Portal »
\n"; sprintf(output, "%s\n%s\n", title, text); return output; } char *html_start_form(char *location, char *action) { memset(output, 0x0, 10000); sprintf(output, "
", location, action); return output; } char *html_end_forum(void) { return "
"; }