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

  1. #
  2. /*
  3.  *    UNIX shell
  4.  *
  5.  *    S. R. Bourne
  6.  *    Bell Telephone Laboratories
  7.  *
  8.  */
  9.  
  10.  
  11. #define N_RDONLY 0100000
  12. #define N_EXPORT 0040000
  13. #define N_ENVNAM 0020000
  14. #define N_ENVPOS 0007777
  15.  
  16. #define N_DEFAULT 0
  17.  
  18. struct namnod {
  19.     NAMPTR    namlft;
  20.     NAMPTR    namrgt;
  21.     STRING    namid;
  22.     STRING    namval;
  23.     STRING    namenv;
  24.     INT    namflg;
  25. };
  26.