Lines Matching defs:reqbufp
47 REQUEST * reqbufp
50 freerequest (reqbufp)
51 register REQUEST *reqbufp;
54 if (!reqbufp)
56 if (reqbufp->destination)
57 Free (reqbufp->destination);
58 if (reqbufp->file_list)
59 freelist (reqbufp->file_list);
60 if (reqbufp->form)
61 Free (reqbufp->form);
62 if (reqbufp->alert)
63 Free (reqbufp->alert);
64 if (reqbufp->options)
65 Free (reqbufp->options);
66 if (reqbufp->pages)
67 Free (reqbufp->pages);
68 if (reqbufp->charset)
69 Free (reqbufp->charset);
70 if (reqbufp->modes)
71 Free (reqbufp->modes);
72 if (reqbufp->title)
73 Free (reqbufp->title);
74 if (reqbufp->input_type)
75 Free (reqbufp->input_type);
76 if (reqbufp->user)
77 Free (reqbufp->user);
78 Free (reqbufp);