home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_200 / 285_02 / gram.c < prev    next >
C/C++ Source or Header  |  1990-07-09  |  2KB  |  58 lines

  1. /*
  2. **    file:        gram.c
  3. **    purpose:    Allocate input grammar variables
  4. **    mods:        1989.12.30 - Roberto Artigas Jr
  5. **            Added DEFAULT initialization
  6. **
  7. Copyright (C) 1984, 1986 Bob Corbett and Free Software Foundation, Inc.
  8.  
  9. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY.  No author or distributor accepts responsibility to anyone
  11. for the consequences of using it or for whether it serves any
  12. particular purpose or works at all, unless he says so in writing.
  13. Refer to the BISON General Public License for full details.
  14.  
  15. Everyone is granted permission to copy, modify and redistribute BISON,
  16. but only under the conditions described in the BISON General Public
  17. License.  A copy of this license is supposed to have been given to you
  18. along with BISON so you can know your rights and responsibilities.  It
  19. should be in a file named COPYING.  Among other things, the copyright
  20. notice and this notice must be preserved on all copies.
  21.  
  22.  In other words, you are welcome to use, share and improve this program.
  23.  You are forbidden to forbid anyone else to use, share and improve
  24.  what you give them.   Help stamp out software-hoarding!
  25. */
  26.  
  27. /* comments for these variables are in gram.h  */
  28.  
  29. #include <stdio.h>
  30.  
  31. int nitems = 0;
  32. int nrules = 0;
  33. int nsyms = 0;
  34. int ntokens = 0;
  35. int nvars = 0;
  36.  
  37. short *ritem = NULL;
  38. short *rlhs = NULL;
  39. short *rrhs = NULL;
  40. short *rprec = NULL;
  41. short *sprec = NULL;
  42. short *rassoc = NULL;
  43. short *sassoc = NULL;
  44. short *token_translations = NULL;
  45. short *rline = NULL;
  46.  
  47. int start_symbol = 0;
  48.  
  49. int translations = 0;
  50.  
  51. int max_user_token_number = 0;
  52.  
  53. int semantic_parser = 0;
  54.  
  55. int pure_parser = 0;
  56.  
  57. int error_token_number = 0;
  58.