c语言http请求解析表单内容

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)
上一篇 2022年1月23日
下一篇 2022年1月23日

相关推荐

发表回复

登录后才能评论