]> git.sur5r.net Git - cc65/blob - src/cc65/stmt.h
Cosmetic changes
[cc65] / src / cc65 / stmt.h
1 /*
2  * stmt.h
3  *
4  * Ullrich von Bassewitz, 19.06.1998
5  */
6
7
8
9 #ifndef STMT_H
10 #define STMT_H
11
12
13
14 /*****************************************************************************/
15 /*                                   Code                                    */
16 /*****************************************************************************/
17
18
19
20 int Statement (void);
21 /* Statement parser. Returns 1 if the statement does a return/break, returns
22  * 0 otherwise
23  */
24
25
26
27 /* End of stmt.h */
28
29 #endif
30
31
32