Parameters 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. !File: pathlength.h
  2. #define PATHLENGTH 1024 /* max. length of path to file */
  3. !File: errout.h
  4. #define ERROUT STDERR /* file pointer for writing messages */
  5. #define MAXERR_LINE 5 /* maximum number of error messages given
  6. on the same input line. */
  7. !File: idfsize.h
  8. #define IDFSIZE 64 /* maximum significant length of an identifier */
  9. !File: numsize.h
  10. #define NUMSIZE 256 /* maximum length of a numeric constant */
  11. !File: nparams.h
  12. #define NPARAMS 32 /* maximum number of parameters of macros */
  13. !File: ifdepth.h
  14. #define IFDEPTH 256 /* maximum number of nested if-constructions */
  15. !File: lapbuf.h
  16. #define LAPBUF 4096 /* size of macro actual parameter buffer */
  17. !File: strsize.h
  18. #define ISTRSIZE 16 /* minimum number of bytes allocated for
  19. storing a string */
  20. !File: botch_free.h
  21. /*#define BOTCH_FREE 1*/ /* botch freed memory, as a check */
  22. !File: debug.h
  23. /*#define DEBUG 1*/ /* perform various self-tests */
  24. #define NDEBUG 1 /* disable assertions */
  25. !File: parbufsize.h
  26. #define PARBUFSIZE 1024
  27. !File: textsize.h
  28. #define ITEXTSIZE 16 /* 1st piece of memory for repl. text */
  29. !File: inputtype.h
  30. /*#define INP_READ_IN_ONE 1*/ /* read input file in one. */
  31. /* If defined, we cannot read from a pipe */
  32. !File: obufsize.h
  33. #define OBUFSIZE 8192 /* output buffer size */
  34. !File: dobits.h
  35. #define DOBITS 1 /* use trick to reduce symboltable accesses */
  36. !File: line_prefix.h
  37. #define LINE_PREFIX "#" /* prefix for generated line directives,
  38. either "#" or "#line"
  39. */