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