Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
/* $Id: main.c 4 2024-09-11 10:22:22Z nishi $ */
#include <stdio.h>
#include "kn_cgi.h"
int main() {
printf("Content-Type: text/html\n");
kn_parse_query();
kn_cgi();
return 0;
}