xref: /original-bsd/bin/csh/dir.h (revision 625037c1)
1 /*-
2  * Copyright (c) 1980, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)dir.h	8.1 (Berkeley) 05/31/93
8  */
9 
10 /*
11  * Structure for entries in directory stack.
12  */
13 struct directory {
14     struct directory *di_next;	/* next in loop */
15     struct directory *di_prev;	/* prev in loop */
16     unsigned short *di_count;	/* refcount of processes */
17     Char   *di_name;		/* actual name */
18 };
19 struct directory *dcwd;		/* the one we are in now */
20