binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / fastcgi / fastcgi.c
CommitLineData
04a13a6f 1#define USE_LIBRARY_FASTCGI
2#include "cll1.h"
3
4program
5{
6 int count = 0;
7 while_fastcgi_accept
8 {
9 printf("Content-type: text/html\r\n"
10 "\r\n"
11 "<title>FastCGI Hello!</title>"
12 "<h1>FastCGI Hello!</h1>"
13 "Request number %d running on host <i>%s</i>\n",
14 ++count, getenv("SERVER_NAME"));
15 }
16}
This page took 0.152138 seconds and 4 git commands to generate.