diff options
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index 7fdd80969b9..94cf6d2dc86 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -963,6 +963,14 @@ extern bool c_promoting_integer_type_p (tree); extern int self_promoting_args_p (tree); extern tree strip_array_types (tree); +/* This function resets the parsers' state in preparation for parsing + a new file. */ +extern void c_reset_state (void); +/* This is the basic parsing function. */ +extern void c_parse_file (void); +/* This is misnamed, it actually performs end-of-compilation processing. */ +extern void finish_file (void); + /* These macros provide convenient access to the various _STMT nodes. */ /* Nonzero if this statement should be considered a full-expression, |