Lines Matching refs:list
57 static void print_list(FILE * f, struct string_list *list);
492 static void print_node(FILE * f, struct string_list *list)
494 if (symbol_types[list->tag].n) {
495 putc(symbol_types[list->tag].n, f);
498 fputs(list->string, f);
501 static void print_list(FILE * f, struct string_list *list)
507 if (list == NULL) {
512 tmp = list;
520 (*tmp2--) = list;
521 while ((list = list->next) != NULL)
522 *(tmp2--) = list;
532 struct string_list *list = sym->defn;
537 if (!list)
540 tmp = list;
548 *(tmp2--) = list;
549 while ((list = list->next) != NULL)
550 *(tmp2--) = list;