cgi.h
复制代码 代码如下:
#ifndef CGI_H
#define CGI_H
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
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_a(char *);
Node *analy_m(char *, char *);
char *get_value(Node *, char *);
char fun1(char);
#endif
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/234656.html
赞 (0)