diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-04 11:25:29 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-04 11:25:29 +0000 |
commit | bbaed73e9a14101e88d84225a902613116c536e9 (patch) | |
tree | 541891d0a3f52c023f0304922909e40b533d4204 /ml.h | |
parent | f0f40906a39936e2d4cd4ddcb8bf4bdb33c2da08 (diff) | |
download | mandoc-bbaed73e9a14101e88d84225a902613116c536e9.tar.gz |
More html-css.
Diffstat (limited to 'ml.h')
-rw-r--r-- | ml.h | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -29,15 +29,16 @@ enum md_ns { MD_NS_DEFAULT, }; -typedef int (*ml_begin)(struct md_mbuf *, - const struct md_args *); +typedef int (*ml_begin)(struct md_mbuf *, const struct md_args *, + const struct tm *, const char *, const char *, + const char *, const char *); typedef int (*ml_end)(struct md_mbuf *, - const struct md_args *); + const struct md_args *); typedef ssize_t (*ml_endtag)(struct md_mbuf *, - const struct md_args *, enum md_ns, int); + const struct md_args *, enum md_ns, int); typedef ssize_t (*ml_begintag)(struct md_mbuf *, - const struct md_args *, enum md_ns, int, - const int *, const char **); + const struct md_args *, enum md_ns, int, + const int *, const char **); __BEGIN_DECLS |