summaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 05:08:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-28 05:08:17 +0000
commitbe14751cf8a50d94471f0e2539b0437d0f776c56 (patch)
tree14f2a746f08501dc8659c9bd379b549e403e260e /html.h
parent56502d387509c2110dbc7798d17e8a7823573f62 (diff)
downloadmandoc-be14751cf8a50d94471f0e2539b0437d0f776c56.tar.gz
mandoc-be14751cf8a50d94471f0e2539b0437d0f776c56.tar.zst
mandoc-be14751cf8a50d94471f0e2539b0437d0f776c56.zip
Fixed un-reset buffer in `.In', -Thtml, -mdoc.
Added html_id[cat,cpy] for transforming id's into well-formed attribute strings (no %s, etc.).
Diffstat (limited to 'html.h')
-rw-r--r--html.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/html.h b/html.h
index b20d08d5..3775edb9 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.15 2009/10/27 04:50:14 kristaps Exp $ */
+/* $Id: html.h,v 1.16 2009/10/28 05:08:17 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -136,6 +136,9 @@ void bufcat_style(struct html *,
void bufncat(struct html *, const char *, size_t);
void bufinit(struct html *);
+void html_idcat(char *, const char *, int);
+void html_idcpy(char *, const char *, int);
+
__END_DECLS
#endif /*!HTML_H*/