2000-05-22 14:18:46 +04:00
|
|
|
/* $NetBSD: var.h,v 1.18 2000/05/22 10:18:47 elric Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1994-05-11 21:09:42 +04:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1995-05-12 01:28:33 +04:00
|
|
|
* @(#)var.h 8.2 (Berkeley) 5/4/95
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shell variables.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* flags */
|
1996-06-25 20:49:05 +04:00
|
|
|
#define VEXPORT 0x01 /* variable is exported */
|
|
|
|
#define VREADONLY 0x02 /* variable cannot be modified */
|
|
|
|
#define VSTRFIXED 0x04 /* variable struct is staticly allocated */
|
|
|
|
#define VTEXTFIXED 0x08 /* text is staticly allocated */
|
|
|
|
#define VSTACK 0x10 /* text is allocated on the stack */
|
|
|
|
#define VUNSET 0x20 /* the variable is not set */
|
|
|
|
#define VNOFUNC 0x40 /* don't call the callback function */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
|
|
|
|
struct var {
|
|
|
|
struct var *next; /* next entry in hash list */
|
1996-06-25 20:49:05 +04:00
|
|
|
int flags; /* flags are defined above */
|
|
|
|
char *text; /* name=value */
|
|
|
|
void (*func) __P((const char *));
|
|
|
|
/* function to be called when */
|
|
|
|
/* the variable gets set/unset */
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct localvar {
|
1996-06-25 20:49:05 +04:00
|
|
|
struct localvar *next; /* next local variable in list */
|
|
|
|
struct var *vp; /* the variable that was made local */
|
|
|
|
int flags; /* saved flags */
|
|
|
|
char *text; /* saved text */
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct localvar *localvars;
|
|
|
|
|
|
|
|
#if ATTY
|
|
|
|
extern struct var vatty;
|
|
|
|
#endif
|
|
|
|
extern struct var vifs;
|
|
|
|
extern struct var vmail;
|
|
|
|
extern struct var vmpath;
|
|
|
|
extern struct var vpath;
|
|
|
|
extern struct var vps1;
|
|
|
|
extern struct var vps2;
|
1997-03-14 04:42:18 +03:00
|
|
|
#ifndef SMALL
|
1997-04-12 02:45:38 +04:00
|
|
|
extern struct var vterm;
|
|
|
|
extern struct var vtermcap;
|
1996-06-25 20:49:05 +04:00
|
|
|
extern struct var vhistsize;
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The following macros access the values of the above variables.
|
|
|
|
* They have to skip over the name. They return the null string
|
|
|
|
* for unset variables.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ifsval() (vifs.text + 4)
|
1999-01-25 17:20:56 +03:00
|
|
|
#define ifsset() ((vifs.flags & VUNSET) == 0)
|
1993-03-21 12:45:37 +03:00
|
|
|
#define mailval() (vmail.text + 5)
|
|
|
|
#define mpathval() (vmpath.text + 9)
|
|
|
|
#define pathval() (vpath.text + 5)
|
|
|
|
#define ps1val() (vps1.text + 4)
|
|
|
|
#define ps2val() (vps2.text + 4)
|
1996-06-25 20:49:05 +04:00
|
|
|
#define optindval() (voptind.text + 7)
|
1997-03-14 04:42:18 +03:00
|
|
|
#ifndef SMALL
|
1996-06-25 20:49:05 +04:00
|
|
|
#define histsizeval() (vhistsize.text + 9)
|
1997-04-12 02:45:38 +04:00
|
|
|
#define termval() (vterm.text + 5)
|
1996-06-25 20:49:05 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#if ATTY
|
|
|
|
#define attyset() ((vatty.flags & VUNSET) == 0)
|
|
|
|
#endif
|
|
|
|
#define mpathset() ((vmpath.flags & VUNSET) == 0)
|
|
|
|
|
1995-05-12 01:28:33 +04:00
|
|
|
void initvar __P((void));
|
1999-07-09 07:05:49 +04:00
|
|
|
void setvar __P((const char *, const char *, int));
|
1995-05-12 01:28:33 +04:00
|
|
|
void setvareq __P((char *, int));
|
1993-03-21 12:45:37 +03:00
|
|
|
struct strlist;
|
1996-10-16 19:45:03 +04:00
|
|
|
void listsetvar __P((struct strlist *));
|
1999-07-09 07:05:49 +04:00
|
|
|
char *lookupvar __P((const char *));
|
|
|
|
char *bltinlookup __P((const char *, int));
|
1995-05-12 01:28:33 +04:00
|
|
|
char **environment __P((void));
|
|
|
|
void shprocvar __P((void));
|
|
|
|
int showvarscmd __P((int, char **));
|
|
|
|
int exportcmd __P((int, char **));
|
|
|
|
int localcmd __P((int, char **));
|
2000-05-22 14:18:46 +04:00
|
|
|
void mklocal __P((char *));
|
1995-05-12 01:28:33 +04:00
|
|
|
void poplocalvars __P((void));
|
|
|
|
int setvarcmd __P((int, char **));
|
|
|
|
int unsetcmd __P((int, char **));
|
1999-07-09 07:05:49 +04:00
|
|
|
int unsetvar __P((const char *));
|
|
|
|
int setvarsafe __P((const char *, const char *, int));
|