Research V7 development
[unix-history] / usr / src / cmd / sh / name.h
CommitLineData
7c658c65
B
1#
2/*
3 * UNIX shell
4 *
5 * S. R. Bourne
6 * Bell Telephone Laboratories
7 *
8 */
9
10
11#define N_RDONLY 0100000
12#define N_EXPORT 0040000
13#define N_ENVNAM 0020000
14#define N_ENVPOS 0007777
15
16#define N_DEFAULT 0
17
18struct namnod {
19 NAMPTR namlft;
20 NAMPTR namrgt;
21 STRING namid;
22 STRING namval;
23 STRING namenv;
24 INT namflg;
25};