Dillo v3.1.1-46-g8a360e32
Loading...
Searching...
No Matches
table.hh
Go to the documentation of this file.
1#ifndef __TABLE_HH__
2#define __TABLE_HH__
3
4/*
5 * Classes
6 */
7
8class DilloHtml;
9
10/*
11 * Table parsing functions
12 */
13
14void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize);
15void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize);
16void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize);
17void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize);
18void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize);
19void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize);
20void Html_tag_open_tbody(DilloHtml *html, const char *tag, int tagsize);
21void Html_tag_content_tbody(DilloHtml *html, const char *tag, int tagsize);
22void Html_tag_open_tfoot(DilloHtml *html, const char *tag, int tagsize);
23void Html_tag_open_thead(DilloHtml *html, const char *tag, int tagsize);
24void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize);
25void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize);
26
27#endif /* __TABLE_HH__ */
void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:242
void Html_tag_content_tbody(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:260
void Html_tag_open_tbody(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:256
void Html_tag_open_thead(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:274
void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:287
void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:47
void Html_tag_open_tfoot(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:267
void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:248
void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:223
void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:281
void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:161
void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:180