cpp: fix relative includes
[m6w6/ext-psi] / src / parser.h
index b05d1851dec36ccf7be99fd258498c7acde09cc9..d4cfb225b8ffe8771aaa1b3a92b6a53d02fb55ad 100644 (file)
@@ -51,22 +51,11 @@ struct psi_parser_input {
        char buffer[1];
 };
 
-struct psi_parser_data {
-       enum {
-               PSI_PARSER_DATA_SELF,
-               PSI_PARSER_DATA_CPP
-       } type;
-       union {
-               struct psi_parser *parser;
-               struct psi_cpp *cpp;
-       } data;
-};
-
 struct psi_parser *psi_parser_init(struct psi_parser *P, psi_error_cb error, unsigned flags);
 struct psi_parser_input *psi_parser_open_file(struct psi_parser *P, const char *filename, bool report_errors);
 struct psi_parser_input *psi_parser_open_string(struct psi_parser *P, const char *string, size_t length);
 struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input *I);
-struct psi_plist *psi_parser_preprocess(struct psi_parser *P, struct psi_plist *tokens);
+struct psi_plist *psi_parser_preprocess(struct psi_parser *P, struct psi_plist **tokens);
 bool psi_parser_process(struct psi_parser *P, struct psi_plist *tokens, size_t *processed);
 bool psi_parser_parse(struct psi_parser *P, struct psi_parser_input *I);
 void psi_parser_dtor(struct psi_parser *P);