]> git.sur5r.net Git - cc65/blob - src/cc65/preproc.h
Fixed multi line macro bug
[cc65] / src / cc65 / preproc.h
1 /*
2  * preproc.h
3  *
4  * Ullrich von Bassewitz, 07.06.1998
5  */
6
7
8
9 #ifndef PREPROC_H
10 #define PREPROC_H
11
12
13
14 /*****************************************************************************/
15 /*                                   data                                    */
16 /*****************************************************************************/
17
18
19
20 /* Token table entry */
21 struct tok_elt {
22     char *toknam;
23     int toknbr;
24 };
25
26 /* Set when the pp calls expr() recursively */
27 extern unsigned char Preprocessing;
28
29
30
31 /*****************************************************************************/
32 /*                                   code                                    */
33 /*****************************************************************************/
34
35
36
37 void Preprocess (void);
38 /* Preprocess a line */
39
40
41
42 /* End of preproc.h */
43 #endif
44
45
46
47
48