Subversion Repositories Keine

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 nishi 1
/* $Id: main.c 2 2024-09-11 09:16:23Z nishi $ */
2
 
3
#include <stdio.h>
4
 
5
#include "kn_cgi.h"
6
 
7
int main(){
8
	printf("Content-Type: text/html\n");
9
	kn_parse_query();
10
	kn_cgi();
11
	return 0;
12
}