summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-12-01 08:05:52 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-12-01 08:05:52 +0000
commit35222d2bf1b794cf12e57a16c0bef4a7bcf4eeba (patch)
tree44fe9754b5993ea9db9db6a9c6e870be5c94f738 /html.h
parentb61046b64bcba656a10cf3b23c4cb547c2f2eef5 (diff)
downloadmandoc-35222d2bf1b794cf12e57a16c0bef4a7bcf4eeba.tar.gz
header cleanup:
* add missing forward declarations * remove needless header inclusions * some style unification
Diffstat (limited to 'html.h')
-rw-r--r--html.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/html.h b/html.h
index e8d3dca8..fd5e0bce 100644
--- a/html.h
+++ b/html.h
@@ -15,8 +15,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-__BEGIN_DECLS
-
enum htmltag {
TAG_HTML,
TAG_HEAD,
@@ -144,6 +142,11 @@ struct html {
#define HTML_FRAGMENT (1 << 0) /* don't emit HTML/HEAD/BODY */
};
+__BEGIN_DECLS
+
+struct tbl_span;
+struct eqn;
+
void print_gen_decls(struct html *);
void print_gen_head(struct html *);
struct tag *print_otag(struct html *, enum htmltag,