Lines Matching defs:fnp
81 static struct fn_list *glob_debrace(struct fn *fnp);
83 static boolean_t glob_magic(struct fn *fnp);
87 glob_debrace(struct fn *fnp)
91 char *sp = fn_s(fnp);
139 glob_magic(struct fn *fnp)
141 char *s = fn_s(fnp);
159 glob_glob(struct fn *fnp)
161 struct fn_list *tmplist = glob_debrace(fnp);
204 struct fn *fnp;
207 while ((fnp = fn_list_next(fnlp)) != NULL)
208 fn_list_addfn_list(ret, glob_glob(fnp));
218 glob_reglob(struct fn *fnp)
223 char *mys = STRDUP(fn_s(fnp));
330 struct fn *fnp;
333 while ((fnp = fn_list_next(fnlp)) != NULL)
334 fn_list_addfn_list(ret, glob_reglob(fnp));
342 glob_to_reglob(struct fn *fnp)
347 fn_rewind(fnp);
348 while ((c = fn_getc(fnp)) != '\0')
390 struct fn *fnp;
415 while ((fnp = fn_list_next(fnlp)) != NULL)
416 printf(" <%s>\n", fn_s(fnp));
420 while ((fnp = fn_list_popoldest(fnlp)) != NULL) {
421 printf(" oldest <%s>\n", fn_s(fnp));
422 fn_free(fnp);