diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-25 15:37:00 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-25 15:37:00 +0000 |
commit | 50079d4076610ce94c315c3ead86fa3dd19dc673 (patch) | |
tree | a0a462e3767cedd8ddb18951887372ecbe0ebe93 /libroff.h | |
parent | 9e5a4ae8da2d23137cf7342e8fe27ed1172b98f5 (diff) | |
download | mandoc-50079d4076610ce94c315c3ead86fa3dd19dc673.tar.gz |
Implement the first steps of equation parsing from within libmdoc.
This consists of a shim around the text parser that calls out to libroff
if equation components exist on the line. Right now this will do
nothing, as the equation delimiter always returns nil.
Diffstat (limited to 'libroff.h')
-rw-r--r-- | libroff.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,9 +72,9 @@ int tbl_layout(struct tbl_node *, int, const char *); int tbl_data(struct tbl_node *, int, const char *); int tbl_cdata(struct tbl_node *, int, const char *); const struct tbl_span *tbl_span(struct tbl_node *); -void tbl_end(struct tbl_node *); +void tbl_end(struct tbl_node **); struct eqn_node *eqn_alloc(const char *, int, int, struct mparse *); -enum rofferr eqn_end(struct eqn_node *); +enum rofferr eqn_end(struct eqn_node **); void eqn_free(struct eqn_node *); enum rofferr eqn_read(struct eqn_node **, int, const char *, int, int *); |