equal
deleted
inserted
replaced
55 /* Safety Software Technical Specification, */ |
55 /* Safety Software Technical Specification, */ |
56 /* Part 1: Concepts and Function Blocks, */ |
56 /* Part 1: Concepts and Function Blocks, */ |
57 /* Version 1.0 – Official Release */ |
57 /* Version 1.0 – Official Release */ |
58 /******************************************************/ |
58 /******************************************************/ |
59 bool safe_extensions; |
59 bool safe_extensions; |
60 /* error messages specify full token location */ |
60 bool full_token_loc; /* error messages specify full token location */ |
61 bool full_token_loc; |
61 bool conversion_functions; /* Create a conversion function for derived datatype */ |
62 /* Include directory, where included files will be searched for... */ |
62 bool nested_comments; /* Allow the use of nested comments. */ |
63 bool conversion_functions; |
63 const char *includedir; /* Include directory, where included files will be searched for... */ |
64 /* Create a conversion function for derived datatype */ |
|
65 const char *includedir; |
|
66 } stage1_2_options_t; |
64 } stage1_2_options_t; |
67 |
65 |
68 |
66 |
69 int stage1_2(const char *filename, symbol_c **tree_root, stage1_2_options_t options); |
67 int stage1_2(const char *filename, symbol_c **tree_root, stage1_2_options_t options); |
70 |
68 |