diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 05:08:17 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-28 05:08:17 +0000 |
commit | e610e710af132c1cfeed06eb0da987c4ab7af35d (patch) | |
tree | e9cbd38d499e37af7b1048c22dde6a8d2c6efa1e /html.h | |
parent | c6fa100a886693167f543f9b59fbc85e46faa49c (diff) | |
download | mandoc-e610e710af132c1cfeed06eb0da987c4ab7af35d.tar.gz |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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*/ |