Files
Arquivotheca.SunOS-4.1.4/bin/sh/name.h
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

33 lines
568 B
C

/* @(#)name.h 1.1 94/10/31 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;
};