Renamed parcel.h to grammar_parser.h to reflect the grammar parser not being the whole project.
This commit is contained in:
parent
dd5f43fd7f
commit
e70e9c5cef
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
#ifndef PARCEL_H
|
#ifndef PARCEL_GRAMMAR_PARSER_H
|
||||||
#define PARCEL_H
|
#define PARCEL_GRAMMAR_PARSER_H
|
||||||
|
|
||||||
#include <parcel/utility/utility.h>
|
#include <parcel/utility/utility.h>
|
||||||
#include <logger.h>
|
#include <logger.h>
|
||||||
|
@ -85,4 +85,4 @@ void pac_delete_grammar (pac_grammar_s grammar);
|
||||||
void pac_display_log (pac_logger_s *logger);
|
void pac_display_log (pac_logger_s *logger);
|
||||||
void pac_display_grammar (pac_grammar_s grammar);
|
void pac_display_grammar (pac_grammar_s grammar);
|
||||||
|
|
||||||
#endif // PARCEL_H
|
#endif // PARCEL_GRAMMAR_PARSER_H
|
|
@ -1,4 +1,4 @@
|
||||||
#include <parcel.h>
|
#include <grammar_parser.h>
|
||||||
#include <ast.h>
|
#include <ast.h>
|
||||||
#include <tokenizer.h>
|
#include <tokenizer.h>
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include <parcel.h>
|
#include <grammar_parser.h>
|
||||||
#include <ast.h>
|
#include <ast.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
Loading…
Reference in New Issue