|
Revision 1, 0.8 kB
(checked in by heitor.barbieri, 4 years ago)
|
|
Criação do svn para Cisis.
|
| Line | |
|---|
| 1 | /* --------------------------------------------------------------- CGILIST.H */ |
|---|
| 2 | |
|---|
| 3 | /* ------------------------------------------------------------- enumeration */ |
|---|
| 4 | typedef enum { |
|---|
| 5 | CGI_ERROR_OK, |
|---|
| 6 | CGI_ERROR_ALLOC, |
|---|
| 7 | CGI_ERROR_POST, |
|---|
| 8 | CGI_ERROR_QTT |
|---|
| 9 | } CGI_ERROR_LIST; |
|---|
| 10 | /* -------------------------------------------------------------- structures */ |
|---|
| 11 | typedef struct cgi_param_stru { |
|---|
| 12 | char *name; |
|---|
| 13 | char *value; |
|---|
| 14 | struct cgi_param_stru *next; |
|---|
| 15 | } CGI_PARAM; |
|---|
| 16 | /* -------------------------------------------------------------- prototypes */ |
|---|
| 17 | void cgi_free (CGI_PARAM *cgiparam); |
|---|
| 18 | char *cgi_getenv (char *env_name); |
|---|
| 19 | CGI_PARAM *cgi_newparam (EFC_ERROR *err,CGI_PARAM *cgi_pos,char *cgicouple); |
|---|
| 20 | CGI_PARAM *cgi_read (EFC_ERROR *err); |
|---|
| 21 | CGI_PARAM *cgi_split (EFC_ERROR *err,char *query_string); |
|---|