new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / struct / struct / 4.def.h
CommitLineData
0fc6e47b
KB
1/*-
2 * %sccs.include.proprietary.c%
3 *
4 * @(#)4.def.h 4.3 (Berkeley) %G%
5 */
476fcd16 6
90c14673
RH
7#define YESTAB TRUE
8#define NOTAB FALSE
9#define TABOVER(n) tabover(n,outfd)
10#define OUTSTR(x) fprintf(outfd,"%s",x)
11#define OUTNUM(x) fprintf(outfd,"%d",x)
12
13
14extern LOGICAL *brace;
15#define YESBRACE(v,i) { if (DEFINED(LCHILD(v,i))) brace[LCHILD(v,i)] = TRUE; }
16#define NOBRACE(v,i) { if (DEFINED(LCHILD(v,i))) brace[LCHILD(v,i)] = FALSE; }
17#define HASBRACE(v,i) ((DEFINED(LCHILD(v,i))) ? brace[LCHILD(v,i)] : TRUE)