new version from Christos -- 8-bit clean, lots of bug fixes
[unix-history] / usr / src / bin / csh / dir.h
CommitLineData
ecc449eb
KB
1/*-
2 * Copyright (c) 1980, 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
b79f4fa9 6 *
6e37afca 7 * @(#)dir.h 5.4 (Berkeley) %G%
b79f4fa9 8 */
0f4207a8
BJ
9
10/*
11 * Structure for entries in directory stack.
12 */
6e37afca
KB
13struct 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 */
0f4207a8
BJ
18};
19struct directory *dcwd; /* the one we are in now */