use the library globbing routines instead of rolling our own
[unix-history] / usr / src / bin / csh / dir.h
CommitLineData
b79f4fa9
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
094e80ed 3 * All rights reserved. The Berkeley Software License Agreement
b79f4fa9
DF
4 * specifies the terms and conditions for redistribution.
5 *
094e80ed 6 * @(#)dir.h 5.2 (Berkeley) %G%
b79f4fa9 7 */
0f4207a8
BJ
8
9/*
10 * Structure for entries in directory stack.
11 */
12struct directory {
13 struct directory *di_next; /* next in loop */
14 struct directory *di_prev; /* prev in loop */
15 unsigned short *di_count; /* refcount of processes */
16 char *di_name; /* actual name */
17};
18struct directory *dcwd; /* the one we are in now */