Subversion Repositories Keine

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

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