Home | History | Annotate | Download | only in pax

Lines Matching refs:FTREE

1 /*	$NetBSD: ftree.c,v 1.46 2024/09/08 17:28:36 rillig Exp $	*/
72 static char sccsid[] = "@(#)ftree.c 8.2 (Berkeley) 4/18/94";
74 __RCSID("$NetBSD: ftree.c,v 1.46 2024/09/08 17:28:36 rillig Exp $");
90 #include "ftree.h"
100 * file args supplied to pax are stored on a single linked list (of type FTREE)
114 static FTREE *fthead = NULL; /* head of linked list of file args */
115 static FTREE *fttail = NULL; /* tail of linked list of file args */
116 static FTREE *ftcur = NULL; /* current file arg being processed */
214 FTREE *ft;
226 * allocate FTREE node and add to the end of the linked list (args are
230 if ((ft = (FTREE *)malloc(sizeof(FTREE))) == NULL) {
292 FTREE *ft;