diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-04-29 12:43:56 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-04-29 12:43:56 +0000 |
commit | e4a03762c83065142a21c681f115e3405fd81a31 (patch) | |
tree | 12ddc0987a0fb73157710f647ae20b6981ab0fc6 /usr.bin/mandoc/libmandoc.h | |
parent | 11ddd3024c30f04c99558f38519a4e5ff9b09661 (diff) |
Parser unification: use nice ohashes for all three request and macro tables;
no functional change, minus two source files, minus 200 lines of code.
Diffstat (limited to 'usr.bin/mandoc/libmandoc.h')
-rw-r--r-- | usr.bin/mandoc/libmandoc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/libmandoc.h b/usr.bin/mandoc/libmandoc.h index 4f82e71a6fd..41d31723c88 100644 --- a/usr.bin/mandoc/libmandoc.h +++ b/usr.bin/mandoc/libmandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libmandoc.h,v 1.51 2017/02/18 13:43:34 schwarze Exp $ */ +/* $OpenBSD: libmandoc.h,v 1.52 2017/04/29 12:43:55 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -50,11 +50,9 @@ int mandoc_eos(const char *, size_t); int mandoc_strntoi(const char *, size_t, int); const char *mandoc_a2msec(const char*); -void mdoc_hash_init(void); int mdoc_parseln(struct roff_man *, int, char *, int); void mdoc_endparse(struct roff_man *); -void man_hash_init(void); int man_parseln(struct roff_man *, int, char *, int); void man_endparse(struct roff_man *); |