home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / struct / 4.def.h < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  417 b   |  12 lines

  1. #define YESTAB    TRUE
  2. #define NOTAB    FALSE
  3. #define TABOVER(n)    tabover(n,outfd)
  4. #define OUTSTR(x)        fprintf(outfd,"%s",x)
  5. #define OUTNUM(x)        fprintf(outfd,"%d",x)
  6.  
  7.  
  8. extern LOGICAL *brace;
  9. #define YESBRACE(v,i)    { if (DEFINED(LCHILD(v,i))) brace[LCHILD(v,i)] = TRUE; }
  10. #define NOBRACE(v,i)    { if (DEFINED(LCHILD(v,i))) brace[LCHILD(v,i)] = FALSE; }
  11. #define HASBRACE(v,i)     ((DEFINED(LCHILD(v,i))) ? brace[LCHILD(v,i)] : TRUE)
  12.