Subversion Repositories Keine

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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