Lines Matching defs:ofl
208 struct outflist *ofl, **pofl;
211 ofl = outflist;
215 while (ofl != NULL) {
216 if (ofl->ofl_num == num)
219 pofl = &ofl->ofl_next;
220 ofl = ofl->ofl_next;
224 if (ofl == NULL) {
225 ofl = *pofl = xmalloc(sizeof(**pofl));
226 ofl->ofl_num = num;
227 ofl->ofl_next = NULL;
235 struct outflist *ofl;
238 for (ofl = outflist, i = 1; ofl != NULL; ofl = ofl->ofl_next, i++) {
241 outstrg(fnames[ofl->ofl_num]);