diff options
Diffstat (limited to 'src/table.hh')
-rw-r--r-- | src/table.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/table.hh b/src/table.hh index aca717ba..5417f681 100644 --- a/src/table.hh +++ b/src/table.hh @@ -12,8 +12,12 @@ class DilloHtml; */ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize); void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize); +void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize); #endif /* __TABLE_HH__ */ |