Subversion Repositories Keine

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | Download | 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;
}