Root/
| 1 | /* |
| 2 | * fpd.c - Things fpd.l and fpd.y export |
| 3 | * |
| 4 | * Written 2009, 2012 by Werner Almesberger |
| 5 | * Copyright 2009, 2012 by Werner Almesberger |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | |
| 14 | #ifndef FPD_H |
| 15 | #define FPD_H |
| 16 | |
| 17 | #include "expr.h" |
| 18 | #include "obj.h" |
| 19 | |
| 20 | |
| 21 | extern struct expr *expr_result; |
| 22 | extern const char *var_id; |
| 23 | extern struct value *var_value_list; |
| 24 | |
| 25 | |
| 26 | int dbg_print(const struct expr *expr, const struct frame *frame); |
| 27 | |
| 28 | void scan_empty(void); |
| 29 | void scan_file(void); |
| 30 | void scan_expr(const char *s); |
| 31 | void scan_var(const char *s); |
| 32 | void scan_values(const char *s); |
| 33 | |
| 34 | int yyparse(void); |
| 35 | |
| 36 | #endif /* !FPD_H */ |
| 37 |
Branches:
master
