Home | History | Annotate | Download | only in crunchgen

Lines Matching defs:lst

557 static void output_strlst(FILE *outf, strlst_t *lst);
1028 strlst_t *lst;
1052 for (lst = vars; lst != NULL; lst = lst->next)
1053 fprintf(outmk, "%s\\n", lst->str);
1063 for (lst = vars; lst != NULL; lst = lst->next)
1064 fprintf(outmk, "%s\\n", lst->str);
1089 for (lst = p->keepsymbols; lst != NULL; lst = lst->next)
1090 fprintf(outmk, " / %s$$/ { next };", lst->str);
1102 for (lst = p->keepsymbols; lst != NULL; lst = lst->next)
1103 fprintf(outmk, "-k %s ", lst->str);
1114 output_strlst(FILE *outf, strlst_t *lst)
1116 for (; lst != NULL; lst = lst->next)
1117 fprintf(outf, " %s", lst->str);