Pristine Ack-5.5
[Ack-5.5.git] / util / cpp / Parameters
1 !File: pathlength.h
2 #define PATHLENGTH      1024    /* max. length of path to file          */
3
4
5 !File: errout.h
6 #define ERROUT          STDERR  /* file pointer for writing messages    */
7 #define MAXERR_LINE     5       /* maximum number of error messages given
8                                         on the same input line.         */
9
10
11 !File: idfsize.h
12 #define IDFSIZE 64      /* maximum significant length of an identifier  */
13
14
15 !File: numsize.h
16 #define NUMSIZE 256     /* maximum length of a numeric constant         */
17
18
19 !File: nparams.h
20 #define NPARAMS 32      /* maximum number of parameters of macros       */
21
22
23 !File: ifdepth.h
24 #define IFDEPTH 256     /* maximum number of nested if-constructions    */
25
26
27 !File: lapbuf.h
28 #define LAPBUF  4096    /* size of macro actual parameter buffer        */
29
30
31 !File: strsize.h
32 #define ISTRSIZE        16      /* minimum number of bytes allocated for
33                                         storing a string                */
34
35
36 !File: botch_free.h
37 /*#define BOTCH_FREE    1       /* botch freed memory, as a check       */
38
39
40 !File: debug.h
41 /*#define DEBUG         1       /* perform various self-tests           */
42 #define NDEBUG          1       /* disable assertions                   */
43
44
45 !File: parbufsize.h
46 #define PARBUFSIZE      1024
47
48
49 !File: textsize.h
50 #define ITEXTSIZE       16      /* 1st piece of memory for repl. text   */
51
52
53 !File: inputtype.h
54 /*#define INP_READ_IN_ONE       1       /* read input file in one.  */
55                                 /* If defined, we cannot read from a pipe */
56
57
58 !File: obufsize.h
59 #define OBUFSIZE        8192    /* output buffer size */
60
61
62 !File: dobits.h
63 #define DOBITS          1       /* use trick to reduce symboltable accesses */
64
65
66 !File: line_prefix.h
67 #define LINE_PREFIX     "#"     /* prefix for generated line directives,
68                                    either "#" or "#line"
69                                 */
70
71
72