make the API for indexing in the parser and the linearizer public since it will be needed in the Haskell binding

This commit is contained in:
Krasimir Angelov
2017-09-14 18:11:24 +02:00
parent 0d42eed7b6
commit bcb97a336e
4 changed files with 15 additions and 15 deletions

View File

@@ -351,4 +351,16 @@ struct PgfCCat {
GuFinalizer fin[0];
};
PGF_API_DECL void
pgf_parser_index(PgfConcr* concr,
PgfCCat* ccat, PgfProduction prod,
bool is_lexical,
GuPool *pool);
PGF_API_DECL void
pgf_lzr_index(PgfConcr* concr,
PgfCCat* ccat, PgfProduction prod,
bool is_lexical,
GuPool *pool);
#endif