33 lines
568 B
C
33 lines
568 B
C
/* @(#)name.h 1.1 92/07/30 SMI; from S5R3.1 1.7 */
|
|
|
|
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/*
|
|
* UNIX shell
|
|
*/
|
|
|
|
|
|
#define N_ENVCHG 0020
|
|
#define N_RDONLY 0010
|
|
#define N_EXPORT 0004
|
|
#define N_ENVNAM 0002
|
|
#define N_FUNCTN 0001
|
|
|
|
#define N_DEFAULT 0
|
|
|
|
struct namnod
|
|
{
|
|
struct namnod *namlft;
|
|
struct namnod *namrgt;
|
|
char *namid;
|
|
char *namval;
|
|
char *namenv;
|
|
int namflg;
|
|
};
|
|
|