Codebase list dillo / c1dc3d8e-6d74-4d7c-815c-e88c512a8819/upstream src / table.hh
c1dc3d8e-6d74-4d7c-815c-e88c512a8819/upstream

Tree @c1dc3d8e-6d74-4d7c-815c-e88c512a8819/upstream (Download .tar.gz)

table.hh @c1dc3d8e-6d74-4d7c-815c-e88c512a8819/upstreamraw · history · blame

#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_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__ */