Codebase list dillo / upstream/3.0 src / table.hh
upstream/3.0

Tree @upstream/3.0 (Download .tar.gz)

table.hh @upstream/3.0raw · 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_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__ */