blob: 8068c184dcae63fd117e5871b454d4f4202f24f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __TABLE_HH__
#define __TABLE_HH__
/*
* Classes
*/
class DilloHtml;
/*
* Table parsing functions
*/
void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_td(DilloHtml *html, const char *tag, int tagsize);
void Html_tag_open_th(DilloHtml *html, const char *tag, int tagsize);
#endif /* __TABLE_HH__ */
|