|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T s
Length: 677 (0x2a5) Types: TextFile Names: »symtab.h«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« └─⟦036c765ac⟧ └─⟦this⟧ »TeX3.0/web2c/symtab.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦c6be2784f⟧ »web2c-5.84b.tar.Z« └─⟦5800b1b62⟧ └─⟦this⟧ »src-5.84b/web2c/symtab.h« └─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/web2c/symtab.h«
/* * This is the one thing we need to include in web2c.c as well as * in other modules which include web2c.h. */ struct sym_entry { char *id; /* points to the identifier */ int typ; /* token type */ int next; /* next symbol entry */ long val; /* constant : value subrange type : lower bound */ long upper; /* subrange type : upper bound variable, function, type or field : type length */ int val_sym, upper_sym; /* Sym table entries of symbols for lower and upper bounds */ boolean var_formal; /* Is this a formal parameter by reference? */ boolean var_not_needed; /* TRUE if VAR token should be ignored for this type */ };