prlex(): don't print trailing space
[unix-history] / usr / src / bin / csh / dir.h
CommitLineData
b79f4fa9
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)dir.h 5.1 (Berkeley) %G%
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 */