/*********************************************************************** * * * This software is part of the ast package * * Copyright (c) 1982-2012 AT&T Intellectual Property * * and is licensed under the * * Eclipse Public License, Version 1.0 * * by AT&T Intellectual Property * * * * A copy of the License is available at * * http://www.eclipse.org/org/documents/epl-v10.html * * (with md5 checksum b35adb5213ca9657e911e9befb180842) * * * * Information and Software Systems Research * * AT&T Research * * Florham Park NJ * * * * David Korn * * * ***********************************************************************/ #pragma prototyped #ifndef _SHNODES_H #define _SHNODES_H 1 /* * UNIX shell * Written by David Korn * */ #include #include "argnod.h" /* command tree for tretyp */ #define FINT (02< redirection operator */ #define IOAPP 0x80 /* >> redirection operator */ #define IODOC 0x100 /* << redirection operator */ #define IOMOV 0x200 /* <& or >& operators */ #define IOCLOB 0x400 /* noclobber bit */ #define IORDW 0x800 /* <> redirection operator */ #define IORAW 0x1000 /* no expansion needed for filename */ #define IOSTRG 0x2000 /* here-document stored as incore string */ #define IOSTRIP 0x4000 /* strip leading tabs for here-document */ #define IOQUOTE 0x8000 /* here-document delimiter was quoted */ #define IOVNM 0x10000 /* iovname field is non-zero */ #define IOLSEEK 0x20000 /* seek operators <# or ># */ #define IOARITH 0x40000 /* arithmetic seek <# ((expr)) */ #define IOREWRITE 0x80000 /* arithmetic seek <# ((expr)) */ #define IOCOPY IOCLOB /* copy skipped lines onto standard output */ #define IOPROCSUB IOARITH /* process substitution redirection */ union Shnode_u { struct argnod arg; struct ionod io; struct whnod wh; struct swnod sw; struct ifnod if_; struct dolnod dol; struct comnod com; struct trenod tre; struct forknod fork; struct fornod for_; struct regnod reg; struct parnod par; struct lstnod lst; struct tstnod tst; struct functnod funct; struct arithnod ar; }; extern void sh_freeup(Shell_t*); extern void sh_funstaks(struct slnod*,int); extern Sfio_t *sh_subshell(Shell_t*,Shnode_t*, volatile int, int); #if defined(__EXPORT__) && defined(_BLD_DLL) && defined(_BLD_shell) __EXPORT__ #endif extern int sh_tdump(Sfio_t*, const Shnode_t*); extern Shnode_t *sh_trestore(Shell_t*, Sfio_t*); #endif /* _SHNODES_H */