Home | History | Annotate | Download | only in pax

Lines Matching defs:ft

214 	FTREE *ft;
230 if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
237 ft->fname = str;
238 ft->refcnt = -isdir;
239 ft->fow = NULL;
241 fttail = fthead = ft;
244 fttail->fow = ft;
245 fttail = ft;
292 FTREE *ft;
305 for (ft = fthead; ft != NULL; ft = ft->fow) {
306 if (ft->refcnt != 0)
313 (void)fprintf(stderr, "%s\n", ft->fname);