Second part of re-renaming grammar.h
This commit is contained in:
parent
c5e21b4dc8
commit
1d8df2c22a
|
@ -1,6 +1,6 @@
|
|||
|
||||
#ifndef PARCEL_GRAMMAR_PARSER_H
|
||||
#define PARCEL_GRAMMAR_PARSER_H
|
||||
#ifndef PARCEL_GRAMMAR_H
|
||||
#define PARCEL_GRAMMAR_H
|
||||
|
||||
#include <parcel/utility/utility.h>
|
||||
#include <logger.h>
|
||||
|
@ -85,4 +85,7 @@ void pac_delete_grammar (pac_grammar_s grammar);
|
|||
void pac_display_log (pac_logger_s *logger);
|
||||
void pac_display_grammar (pac_grammar_s grammar);
|
||||
|
||||
#endif // PARCEL_GRAMMAR_PARSER_H
|
||||
pac_rule_s * pac_find_rule (pac_grammar_s *grammar, char *name);
|
||||
bool_t pac_grammar_has_rule_name_duplications (pac_grammar_s *grammar);
|
||||
|
||||
#endif // PARCEL_GRAMMAR_H
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include <grammar_parser.h>
|
||||
#include <grammar.h>
|
||||
#include <ast.h>
|
||||
#include <tokenizer.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue