Lines Matching defs:first_form
211 struct FormInfo *first_form, *current_form, *form = NULL;
227 first_form = calloc(1, sizeof(struct FormInfo));
228 if(!first_form)
231 current_form = first_form;
525 for(ptr = first_form; ptr != NULL; ptr = ptr->more) {
550 for(form = first_form;
601 (form == first_form) ) {
678 while(first_form) {
679 struct FormInfo *ptr = first_form->more;
680 free(first_form);
681 first_form = ptr;