handle automatic type conversion of array and function types like described in the...
[cparser] / parser.h
1 #ifndef PARSER_H
2 #define PARSER_H
3
4 #include "ast.h"
5 #include "type.h"
6
7 typedef struct environment_entry_t environment_entry_t;
8
9 void init_parser(void);
10 void exit_parser(void);
11
12 translation_unit_t *parse(void);
13
14 type_t *revert_automatic_type_conversion(const expression_t *expression);
15
16 #endif