Deleted Added
full compact
ftree.h (50471) ftree.h (76351)
1/*-
2 * Copyright (c) 1992 Keith Muller.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Keith Muller of the University of California, San Diego.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)ftree.h 8.1 (Berkeley) 5/31/93
1/*-
2 * Copyright (c) 1992 Keith Muller.
3 * Copyright (c) 1992, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Keith Muller of the University of California, San Diego.
8 *

--- 21 unchanged lines hidden (view full) ---

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)ftree.h 8.1 (Berkeley) 5/31/93
38 * $FreeBSD: head/bin/pax/ftree.h 50471 1999-08-27 23:15:48Z peter $
38 * $FreeBSD: head/bin/pax/ftree.h 76351 2001-05-08 06:19:06Z kris $
39 */
40
41/*
42 * Data structure used by the ftree.c routines to store the file args to be
43 * handed to fts(). It keeps a reference count of which args generated a
44 * "selected" member
45 */
46
47typedef struct ftree {
48 char *fname; /* file tree name */
49 int refcnt; /* has tree had a selected file? */
39 */
40
41/*
42 * Data structure used by the ftree.c routines to store the file args to be
43 * handed to fts(). It keeps a reference count of which args generated a
44 * "selected" member
45 */
46
47typedef struct ftree {
48 char *fname; /* file tree name */
49 int refcnt; /* has tree had a selected file? */
50 int chflg; /* change directory flag */
50 struct ftree *fow; /* pointer to next entry on list */
51} FTREE;
51 struct ftree *fow; /* pointer to next entry on list */
52} FTREE;