Subversion Repositories Keine

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

/* $Id: main.c 2 2024-09-11 09:16:23Z nishi $ */

#include <stdio.h>

#include "kn_cgi.h"

int main(){
        printf("Content-Type: text/html\n");
        kn_parse_query();
        kn_cgi();
        return 0;
}