aboutsummaryrefslogtreecommitdiff
path: root/src/table.hh
blob: aca717ba3b6d3eaff92f8575358d16116f246714 (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__ */