summaryrefslogtreecommitdiffstats
path: root/roff.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-06-26 15:22:19 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-06-26 15:22:19 +0000
commita7a9c3b662c1cf6ee6766d865a9dcc58376ea2c9 (patch)
tree5c739a65041bac0ed88bd64df638e92fc2af41ef /roff.h
parent730c5a1572228d1c4a1ef49a9748be04a119c1e8 (diff)
downloadmandoc-a7a9c3b662c1cf6ee6766d865a9dcc58376ea2c9.tar.gz
First step of adding register support. This is inspired by a significant
patch by schwarze@. This commit adds support to libroff parsing `nr' into register set defined in regs.h. This will propogate into libmdoc and libman in later commits.
Diffstat (limited to 'roff.h')
-rw-r--r--roff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/roff.h b/roff.h
index bc2b50c1..9185f912 100644
--- a/roff.h
+++ b/roff.h
@@ -31,8 +31,8 @@ struct roff;
void roff_free(struct roff *);
struct roff *roff_alloc(mandocmsg, void *);
void roff_reset(struct roff *);
-enum rofferr roff_parseln(struct roff *, int,
- char **, size_t *, int, int *);
+enum rofferr roff_parseln(struct roff *, struct regset *,
+ int, char **, size_t *, int, int *);
int roff_endparse(struct roff *);
__END_DECLS