cgi.h 代码如下:#ifndef CGI_H#define CGI_H #include #include #include typedef struct Node{ char *name; char *value; struct Node *next;}Node; typedef struct Index{ Node *head; char *buffer;}Index; Index *get_input();void free_input(Index *);Node *analyze(char *);Node *analy_