void html(void) {
const char *html_top = "Content-Type: text/html\n\n\
\
\
/v/ - Xonotic\
:-) / nice one
";
const char *html_bot = "
Pages under construction.
\
Service may sporadically become unavailable.
\
In-game database is not directly synced with this web server.\
\
";
printf("%s", html_top);
// getquery(getenv("QUERY_STRING"));
// getquery("map=pornstar-kaine");
getquery(NULL);
printf("%s", html_bot);
}
int main(void) {
html();
// getquery("player=duHTyaSGpdTk7oebwPFoo899xPoTwP9bja4DUjCjTLo=");
return 0;
}