SYNOPSYS
#include <cgi.h> s_file *cgiGetFile (s_cgi *parms, const char *name);
DESCRIPTION
This routine returns a pointer to a datastructure associated with the value of a CGI file variable. The pointer must not be freed.The s_file structure is declared as follows:
-
typedef struct file_s { char *name, *type, *filename, *tmpfile; } s_file;
Memory allocated by this data structure is automatically freed by the final call to cgiFree(3).