summaryrefslogtreecommitdiff
path: root/usr/src/cmd/mandoc/libmandoc.h
diff options
context:
space:
mode:
authorJerry Jelinek <jerry.jelinek@joyent.com>2017-08-14 11:53:49 +0000
committerJerry Jelinek <jerry.jelinek@joyent.com>2017-08-14 11:53:49 +0000
commitf3156461964256d1c034e49b880a19bc94c1c281 (patch)
tree14cb627993b9ee1af94fa83fbf8c41cf227c3189 /usr/src/cmd/mandoc/libmandoc.h
parentaea86460f0918659f2a8637f97b2055272a86c98 (diff)
parent5e9f42abf61392dc608a661563fb49e7707f0478 (diff)
downloadillumos-joyent-f3156461964256d1c034e49b880a19bc94c1c281.tar.gz
[illumos-gate merge]
commit 5e9f42abf61392dc608a661563fb49e7707f0478 8559 Add EFI utility functions to libefi commit c66b8046543352459a11a51501b628d1c98a8c44 8547 update mandoc to 1.14.3 commit 12014b724f98604d61f9756b7e199416475d7396 8573 cmd/krb5: dmake should build 'all' as default target
Diffstat (limited to 'usr/src/cmd/mandoc/libmandoc.h')
-rw-r--r--usr/src/cmd/mandoc/libmandoc.h15
1 files changed, 3 insertions, 12 deletions
diff --git a/usr/src/cmd/mandoc/libmandoc.h b/usr/src/cmd/mandoc/libmandoc.h
index 04b3a44565..2cf0762861 100644
--- a/usr/src/cmd/mandoc/libmandoc.h
+++ b/usr/src/cmd/mandoc/libmandoc.h
@@ -1,7 +1,7 @@
-/* $Id: libmandoc.h,v 1.66 2017/02/18 13:43:52 schwarze Exp $ */
+/* $Id: libmandoc.h,v 1.70 2017/07/08 17:52:49 schwarze Exp $ */
/*
* Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -23,8 +23,6 @@ enum rofferr {
ROFF_REPARSE, /* re-run main parser on the result */
ROFF_SO, /* include another file */
ROFF_IGN, /* ignore current line */
- ROFF_TBL, /* a table row was successfully parsed */
- ROFF_EQN /* an equation was successfully parsed */
};
struct buf {
@@ -34,8 +32,6 @@ struct buf {
struct mparse;
-struct tbl_span;
-struct eqn;
struct roff;
struct roff_man;
@@ -45,16 +41,14 @@ void mandoc_vmsg(enum mandocerr, struct mparse *,
int, int, const char *, ...)
__attribute__((__format__ (__printf__, 5, 6)));
char *mandoc_getarg(struct mparse *, char **, int, int *);
-char *mandoc_normdate(struct mparse *, char *, int, int);
+char *mandoc_normdate(struct roff_man *, char *, int, int);
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 *);
@@ -77,6 +71,3 @@ char *roff_strdup(const struct roff *, const char *);
int roff_getcontrol(const struct roff *,
const char *, int *);
int roff_getformat(const struct roff *);
-
-const struct tbl_span *roff_span(const struct roff *);
-const struct eqn *roff_eqn(const struct roff *);