aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-03 16:36:06 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-03 16:36:06 +0000
commit5fd4bbfb011aeb0750a37047be4d3fade1964aea (patch)
tree1dc8a3461388b9f151c4f2321f0e8214676d3252 /html.h
parent2c8407d1d02802e3c8bd38cf02d3e7cc8252a498 (diff)
downloadmandoc-5fd4bbfb011aeb0750a37047be4d3fade1964aea.tar.gz
mandoc-5fd4bbfb011aeb0750a37047be4d3fade1964aea.tar.zst
mandoc-5fd4bbfb011aeb0750a37047be4d3fade1964aea.zip
Fixed mandoc.1 examples (new -Thtml options).
Fixed manuals to use `In', not `Fd'. Moved buf* functions into html.c.
Diffstat (limited to 'html.h')
-rw-r--r--html.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/html.h b/html.h
index 6d7faa35..17b39ae0 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.9 2009/10/03 15:26:26 kristaps Exp $ */
+/* $Id: html.h,v 1.10 2009/10/03 16:36:06 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -103,6 +103,13 @@ void print_tagq(struct html *, const struct tag *);
void print_stagq(struct html *, const struct tag *);
void print_text(struct html *, const char *);
+void buffmt_man(struct html *, const char *, const char *);
+void buffmt_includes(struct html *, const char *);
+void buffmt(struct html *, const char *, ...);
+void bufcat(struct html *, const char *);
+void bufncat(struct html *, const char *, size_t);
+void bufinit(struct html *);
+
__END_DECLS
#endif /*!HTML_H*/