Dillo v3.2.0-151-g90488cbf
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:243
void Html_tag_content_tbody(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:261
void Html_tag_open_tbody(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:257
void Html_tag_open_thead(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:275
void Html_tag_content_th(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:288
void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:48
void Html_tag_open_tfoot(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:268
void Html_tag_content_td(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:249
void Html_tag_content_tr(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:224
void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:282
void Html_tag_content_table(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:162
void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize)
Definition table.cc:181