Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.6 KiB

4 years ago
  1. /********************************************************************************/
  2. /* ************* */
  3. /* * Y 1 . H * */
  4. /* ************* */
  5. /* */
  6. /* This file contains the external declarations needed to hook Yacc modules */
  7. /* which were originally in Y1.C to their impure data in Y1IMP.1C. Also does */
  8. /* the include of the original data/external file DTXTRN.H. */
  9. /* */
  10. /********************************************************************************/
  11. #include "dtxtrn.h"
  12. /* lookahead computations */
  13. extern int tbitset; /* size of lookahead sets */
  14. extern int nlset; /* next lookahead set index */
  15. extern struct looksets clset; /* temporary storage for lookahead computations */
  16. /* other storage areas */
  17. extern int fatfl; /* if on, error is fatal */
  18. extern int nerrors; /* number of errors */
  19. /* storage for information about the nonterminals */
  20. extern int **pres[ ]; /* vector of pointers to productions yielding each nonterminal */
  21. extern struct looksets *pfirst[ ]; /* vector of pointers to first sets for each nonterminal */
  22. extern int pempty[ ]; /* vector of nonterminals nontrivially deriving e */
  23. /* accumulators for statistics information */
  24. extern struct wset *zzcwp;
  25. extern int * zzmemsz;