diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-14 16:28:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-05-14 16:28:23 +0000 |
commit | 121fc3d4eff42f9400d7e165b83c068757148a7b (patch) | |
tree | 542cf79d7a2a3064093e486984d4bca92800daa0 /html.h | |
parent | 060aa662da1355a03d3193d7e0dcd9b0bbc33ccc (diff) | |
download | mandoc-121fc3d4eff42f9400d7e165b83c068757148a7b.tar.gz |
Give -Thtml and -Txhtml the gift of recognising escapes when calculating
widths (e.g., `Bl -tag -width "\s[blahblah]bar"). This has long since
been done for -Tascii but escaped noticed with -T[x]html.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -155,6 +155,7 @@ void bufncat(struct html *, const char *, size_t); void bufinit(struct html *); void html_idcat(char *, const char *, int); +int html_strlen(const char *); __END_DECLS |