=================================================================== RCS file: /cvs/mandoc/html.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- mandoc/html.h 2009/10/03 15:26:26 1.9 +++ mandoc/html.h 2009/10/03 16:36:06 1.10 @@ -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 * @@ -102,6 +102,13 @@ struct tag *print_otag(struct html *, enum htmltag, 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